using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "OP_SEAE_ORDER_FEEDBACK", DisableSyncStructure = true)] public partial class OPSEAEORDERFEEDBACK { [JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(Name = "CREATE_TIME", InsertValueSql = "getdate()")] public DateTime CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(2000)")] public string DATA { get; set; } [JsonProperty, Column(DbType = "varchar(40)")] public string ORDNO { get; set; } [JsonProperty, Column(Name = "SEND_RESULT", DbType = "varchar(200)")] public string SENDRESULT { get; set; } [JsonProperty, Column(Name = "SEND_STATUS", DbType = "varchar(20)")] public string SENDSTATUS { get; set; } [JsonProperty, Column(Name = "SEND_TIME")] public DateTime? SENDTIME { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string TYPE { get; set; } } }