using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("WX_SZZYORDER_BIND")] public class WX_SZZYORDER_BIND { [Key] public int? Id { get; set; } public DateTime? CreateTime { get; set; } /// /// 员工Id /// public int? EId { get; set; } /// /// 绑定状态 0=未绑定,1=自动绑定,2=手动绑定 /// public int? BindType { get; set; } /// /// 支付类型 1=微信,2=支付宝 /// public int? PayType { get; set; } /// /// UnionId /// public string UnionId { get; set; } /// /// 流水号 /// public string PayNo { get; set; } /// /// 金额 /// public decimal? Amount { get; set; } } public class SearchBindListDto : SearchPageBase { public int? Id { get; set; } public string txt_companyId { get; set; } public string txt_deptId { get; set; } public string txt_groupIds { get; set; } public string txt_userId { get; set; } /// /// 绑定状态 0=未绑定,1=自动绑定,2=手动绑定 /// public int? BindType { get; set; } /// /// 支付类型 wechat|wxWork|alipay /// public string PayType { get; set; } /// /// 客户Id /// public string ResId { get; set; } /// /// 手机号 /// public string Phone { get; set; } /// /// UnionId /// public string UnionId { get; set; } /// /// 流水号 /// public string PayNo { get; set; } /// /// 员工Id /// public int? EId { get; set; } /// /// 事业部Id /// public decimal? businessId { get; set; } } public class BindListDto { public int? Id { get; set; } /// /// 绑定状态 0=未绑定,1=自动绑定,2=手动绑定 /// public int? BindType { get; set; } /// /// 支付类型 wechat|wxWork|alipay /// public string PayType { get; set; } /// /// 客户Id /// public string ResId { get; set; } /// /// 手机号 /// public string Phone { get; set; } /// /// UnionId /// public string UnionId { get; set; } /// /// 流水号 /// public string PayNo { get; set; } /// /// 金额 /// public decimal? Amount { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 员工Id /// public int? EId { get; set; } /// /// 员工名称 /// public string EName { get; set; } } }