123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Financial
- {
- public class Fin_GroupExtraCostDto_OP : PortDtoBase
- {
-
-
-
- public int editType { get; set; }
- public int Id { get; set; }
- public int diId { get; set; }
-
-
-
- public string priceName { get; set; }
-
-
-
- public decimal price { get; set; }
-
-
-
- public int priceType { get; set; }
-
-
-
- public int priceDetailType { get; set; }
-
-
-
- public decimal coefficient { get; set; }
-
-
-
- public int currency { get; set; }
-
-
-
- public string payee { get; set; }
-
-
-
- public int costSign { get; set; }
-
-
-
- public int payType { get; set; }
-
-
-
- public int payCardId { get; set; }
-
-
-
- public string filePath { get; set; }
-
-
-
- public string remark { get; set; }
-
-
-
- public int createUser { get; set; }
-
-
-
- public string PriceDt { get; set; }
-
-
-
- public int PriceCount { get; set; }
-
-
-
- public int? Area { get; set; }
-
-
-
- public int SupervisorConfirm { get; set; }
-
-
-
- public int ManagerConfirm { get; set; }
-
-
-
- public int SYsupervisorConfirm { get; set; }
- }
- public class Fin_GroupExtraCostDto_Search : DtoBase
- {
- public int diId { get; set; }
- }
- public class Fin_GroupExtraCostDto_Detail : PortDtoBase
- {
- public int Id { get; set; }
- }
- public class Fin_GroupExtraCostDto_DataListInit : PortDtoBase
- {
- }
- public class Fin_GroupExtraCostExcelDto : PortDtoBase
- {
- public int diId { get; set; }
- }
- public class Fin_GroupExtraCostExcelColumnSetting
- {
- public int columnIndex { get; set; }
- public string columnName { get; set; }
- public double columnWidth { get; set; }
- public int rowCount { get; set; } = 1;
- }
- public class ReturnPremiumConfirmDto
- {
- public int ConfirmId { get; set; }
- public int DataId { get; set; }
- public int status { get; set; }
- }
- }
|