using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; namespace djy.Model.Ams { [JsonObject(MemberSerialization.OptIn), Table(Name = "ISF_MasterHistory", DisableSyncStructure = true)] public class ISF_MasterHistory { /// /// 主键 /// [JsonProperty, Column(IsPrimary = true, IsNullable = false)] public string GID { get; set; } /// /// 业务id /// public string ISF_ID { get; set; } /// /// 发送时间 /// public DateTime? SendTime { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 状态 /// public string State { get; set; } /// /// 备注说明 /// public string Remark { get; set; } /// /// 操作人 /// public string Operator { get; set; } } }