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 = "CH_FEE_AutoDuiDetail", DisableSyncStructure = true)] public partial class CHFEEAutoDuiDetail { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(Name = "B_BSNO", DbType = "varchar(50)")] public string BBSNO { get; set; } [JsonProperty, Column(Name = "B_MBLNO", DbType = "varchar(50)")] public string BMBLNO { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string BSNO { get; set; } [JsonProperty] public DateTime? ETD { get; set; } [JsonProperty] public byte? ISOK { get; set; } [JsonProperty, Column(Name = "L_RMBAMOUNT", DbType = "numeric(18,2)")] public decimal? LRMBAMOUNT { get; set; } [JsonProperty, Column(Name = "L_USDAMOUNT", DbType = "numeric(18,2)")] public decimal? LUSDAMOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string MBLNO { get; set; } [JsonProperty, Column(DbType = "varchar(150)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "varchar(400)")] public string REMARK2 { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? RMBAMOUNT { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? USDAMOUNT { get; set; } } }