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