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_px_tips", DisableSyncStructure = true)] public partial class OpSeaePxTips { [JsonProperty, Column(DbType = "varchar(50)")] public string GID { get; set; } [JsonProperty, Column(Name = "operator", DbType = "varchar(20)")] public string Operator { get; set; } [JsonProperty, Column(Name = "optime")] public DateTime? Optime { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string PXID { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string PXSTATUS { get; set; } [JsonProperty, Column(Name = "remark", DbType = "varchar(500)")] public string Remark { get; set; } } }