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 = "run_fee_do", DisableSyncStructure = true)] public partial class RunFeeDo { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? AMOUNT { get; set; } [JsonProperty] public int? BILLSTATUS { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string BSNO { get; set; } [JsonProperty] public int? BSTYPE { get; set; } [JsonProperty] public int? CATEGORY { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string COMPANYID { get; set; } [JsonProperty] public DateTime? CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CURRENCY { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CUSTOMERNAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DOAMOUNT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? EXCHANGERATE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string FEEID { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string FEENAME { get; set; } [JsonProperty] public int? FEETYPE { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string HBLNO { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string INVOICESETTLENO { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string MBLNO { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? ORIGAMOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string ORIGCURRENCY { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string RUNSETTLEID { get; set; } } }