123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Financial
- {
- public class Fin_GroupExtraCostView
- {
- public int RowNumber { get; set; }
- public int Id { get; set; }
- public int DiId { get; set; }
- public string PriceName { get; set; }
- public int PriceType { get; set; }
- public int PriceDetailType { get; set; }
- public string PriceTypeStr { get; set; }
- public string Price { get; set; }
- public int PriceCount { get; set; }
- public string PriceStr { get; set; }
- public string PriceSumStr { get; set; }
- public int CreateUserId { get; set; }
- public string CreateUserIdStr { get; set; }
- public string PriceDt { get; set; }
- public int IsAuditGM { get; set; }
- public string IsAuditGMStr { get; set; }
-
- }
- public class Fin_GroupExtraCostDetailView
- {
- public int Id { get; set; }
- public int DiId { get; set; }
- public string PriceName { get; set; }
- public decimal Price { get; set; }
- public int PriceCount { get; set; }
- public string PriceDt { get; set; }
- public int PriceCurrency { get; set; }
- public string Payee { get; set; }
- public int OrbitalPrivateTransfer { get; set; }
- public int PayDId { get; set; }
- public int CTDId { get; set; }
- public int PriceType { get; set; }
- public int PriceDetailType { get; set; }
- public decimal Coefficient { get; set; }
- public string Remark { get; set; }
- }
- public class Fin_GroupExtraCostViewDataCount
- {
- public int DataCount { get; set; }
- }
- public class Fin_GroupExtraCostView_List
- {
- }
- }
|