using System; namespace CRM.Core.DTO.Ord { public class OrderDepositDto { public long id { get; set; } public string orderid { get; set; } public string resid { get; set; } public int paytype { get; set; } public string paytypename { get; set; } public DateTime? paydate { get; set; } public decimal payprice { get; set; } public string payname { get; set; } public string remark { get; set; } public string payno { get; set; } public int isuse { get; set; } public string companycode { get; set; } public int? channel { get; set; } public string tradeno { get; set; } public int? creator { get; set; } public string creatorname { get; set; } /// /// 部门编码 /// public string deptcode { get; set; } } public class UseOrderDepositDto { public int orderid { get; set; } public string deposit { get; set; } } }