RequisitionContractDTO.cs 745 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Sugar.Enties
  7. {
  8. public class RequisitionContractDTO
  9. {
  10. /// <summary>
  11. /// 签证申请单编码
  12. /// Default:
  13. /// Nullable:True
  14. /// </summary>
  15. public string RequisitionCode { get; set; }
  16. /// <summary>
  17. ///合同编码
  18. /// Default:
  19. /// Nullable:True
  20. /// </summary>
  21. public string ContractCode { get; set; }
  22. /// <summary>
  23. /// 暂估金额
  24. /// Default:0
  25. /// Nullable:False
  26. /// </summary>
  27. public decimal EstimateCash { get; set; }
  28. }
  29. }