using System; using System.Collections.Generic; namespace CRM.Core.DTO.Ord { public class PayDto { public long id { 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 string tradeno { get; set; } public int? creator { get; set; } public string creatorname { get; set; } public List orderuselist { get; set; } public decimal? depprice { get; set; } } /// /// 已经确认支付的金额, /// public class PayUseDto { public int channel { get; set; } public string resid { get; set; } public decimal? depprice { get; set; } public List orderuselist { get; set; } } public class OrderuseDto { public int orderid { get; set; } public decimal needpay { get; set; } public decimal arrivalpay { get; set; } } public class PayDto2 { public string resid { get; set; } public int? channel { get; set; } //public decimal? depprice { get; set; } public string deptcode { get; set; } public List paylist { get; set; } public List orderuselist { get; set; } } public class OutPayDto { public string szzyorderid { get; set; } public int paytype { get; set; } public DateTime paydate { get; set; } public string payname { get; set; } public string payno { get; set; } public decimal payprice { get; set; } public string remark { get; set; } } public class PayInfoDto { //public long id { 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 string tradeno { get; set; } public int? creator { get; set; } public string creatorname { get; set; } public DateTime? checkpaytime { get; set; } } public class DepositInfoDto { public int id { get; set; } public string payno { get; set; } public string companycode { get; set; } } }