using Ant.Entity; using MES.Production.Entity.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.Entity { /// /// YW_PayCall支付回写表 /// [Table("YW_PayCall")] public class YW_PayCall { /// /// 主键id /// [Column("id", IsPrimaryKey = true)] public string Id { set; get; } = string.Empty; /// /// 订单id /// public string OrderId { set; get; } = string.Empty; /// /// 支付状态 /// public PayStatusEnum PayStatus { set; get; } = PayStatusEnum.UnPay; /// /// 支付流水号 /// public string PaySerialId { set; get; } = string.Empty; /// /// 支付类型 /// public PayWayEnum PayWay { set; get; } = PayWayEnum.UnKnow; /// /// 支付原始记录 /// public string PayResponse { set; get; } = string.Empty; /// /// 买家支付用户号 /// public string BuyerId { set; get; } = string.Empty; /// /// 买家支付账号 /// public string BuyAccount { set; get; } = string.Empty; /// /// 卖家支付用户号 /// public string SellerId { set; get; } = string.Empty; /// /// 卖家支付账号 /// public string SellAccount { set; get; } = string.Empty; /// /// 支付金额 /// public decimal PayAmount { set; get; } /// /// 付款时间 /// public DateTime PayTime { set; get; } = DateTime.Now; /// /// 是否删除(0有效1删除) /// public int IsDelete { set; get; } /// /// 创建时间 /// public DateTime CreateDT { set; get; } = DateTime.Now; /// /// 创建人 /// public string CreateBY { set; get; } = string.Empty; /// /// 修改时间 /// public DateTime ModifyDT { set; get; } = DateTime.Now; /// /// 修改人 /// public string ModifyBY { set; get; } = string.Empty; } }