using APT.Infrastructure.Core; using System; using System.ComponentModel; namespace APT.BaseData.Domain.Entities.FM { [Description("跑批日志明细表")] public class T_FM_SYNC_LOG_DETAIL : MesEntityBase { /// /// 请求编码 /// [DataFieldLength(50)] [Description("请求编码")] public string TRACEIDENTIFIER { get; set; } /// /// 跑批日志表主键 /// [Description("跑批日志表主键")] public Guid SNC_LOG_ID { get; set; } /// /// 数量 /// [Description("数量")] public int COUNT { get; set; } /// /// 日志类型 /// [Description("日志类型")] public Enums.SyncLogType? LOGTYPE { get; set; } /// /// 备注错误日志等 /// [Description("备注")] [DataFieldLength(300)] public string REMARK { get; set; } /// /// 是否成功 /// [Description("是否成功")] public bool IS_SUCCESS { get; set; } = true; } }