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_PayCallLog支付回写日志表 /// [Table("YW_PayCallLog")] public class YW_PayCallLog { /// /// 主键ID /// [Column("id", IsPrimaryKey = true)] public string Id { set; get; } = string.Empty; /// /// 支付流水号 /// public string PaySerialId { set; get; } = string.Empty; /// /// 外部订单号 /// public string OutTradeNo { set; get; } = string.Empty; /// /// 支付类型 /// public PayWayEnum PayWay { set; get; } = PayWayEnum.UnKnow; /// /// 回写原始内容 /// public string PayResponse { set; get; } = string.Empty; /// /// 创建时间 /// 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; } }