123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Financial
- {
-
-
-
- public class DailyFeePaymentDto
- {}
-
-
-
- public class PageDailyFeePaymentDto : DtoBase
- {
-
-
-
-
-
- public int CompanyId { get; set; }
-
-
-
-
-
-
-
- public int FinancialAuditStatus { get; set; }
-
-
-
-
-
-
-
- public int ManagerAuditStatus { get; set; }
-
-
-
-
-
- public int FeeTypeId { get; set; }
-
-
-
-
-
- public int FeeSubTypeId { get; set; }
-
-
-
- public string? FeeDesc { get; set; }
-
-
-
-
-
- public int CreateUserId { get; set; }
- }
-
-
-
- public class SearchDailyFeePaymentDto : DtoBase
- {
-
-
-
- public int Id { get; set; }
- }
-
-
-
- public class AddDailyFeePaymentDto : DtoBase
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public string? Instructions { get; set; }
-
-
-
- public decimal SumPrice { get; set; }
-
-
-
- public int TransferTypeId { get; set; }
-
-
-
- public int PriceTypeId { get; set; }
-
-
-
- public int CompanyId { get; set; }
-
-
-
- public List<AddDailyFeePaymentContentDto> FeeContents { get; set; }
- }
-
-
-
- public class AddDailyFeePaymentContentDto
- {
-
-
-
- public string? PriceName { get; set; }
-
-
-
- public decimal Quantity { get; set; }
-
-
-
- public decimal Price { get; set; }
-
-
-
- public decimal ItemTotal { get; set; }
-
-
-
- public string Remark { get; set; }
- }
-
-
-
- public class EditDailyFeePaymentDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string? Instructions { get; set; }
-
-
-
- public decimal SumPrice { get; set; }
-
-
-
- public int TransferTypeId { get; set; }
-
-
-
- public int PriceTypeId { get; set; }
-
-
-
- public int CompanyId { get; set; }
-
-
-
- public List<EditDailyFeePaymentContentDto> FeeContents { get; set; }
- }
- public class EditDailyFeePaymentContentDto : AddDailyFeePaymentContentDto
- {
-
-
-
- public int Id { get; set; }
- }
-
-
-
- public class DelDailyFeePaymentDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int UserId { get; set; }
- }
- public class DP_AuditStatusDto
- {
- public int Id { get; set; }
-
-
-
-
-
- public int AuditType { get; set; }
-
-
-
-
- public int AuditStatus { get; set; }
- }
- }
|