12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Sugar.Enties
- {
- public class RequisitionContractDTO
- {
- /// <summary>
- /// 签证申请单编码
- /// Default:
- /// Nullable:True
- /// </summary>
- public string RequisitionCode { get; set; }
- /// <summary>
- ///合同编码
- /// Default:
- /// Nullable:True
- /// </summary>
- public string ContractCode { get; set; }
- /// <summary>
- /// 暂估金额
- /// Default:0
- /// Nullable:False
- /// </summary>
- public decimal EstimateCash { get; set; }
- }
- }
|