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 = "fee_gain", DisableSyncStructure = true)] public partial class FeeGain { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); [JsonProperty, Column(DbType = "varchar(100)")] public string BSNO { get; set; } [JsonProperty] public DateTime? CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? CRTTL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DRTTL { get; set; } = 0M; [JsonProperty] public DateTime? MODIFIEDTIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXCRTTL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXDRTTL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXOTCR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXOTDR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXOTPROFIT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXRMBCR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXRMBDR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXRMBPROFIT { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? NOTAXTTLPROFIT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXUSDCR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXUSDDR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? NOTAXUSDPROFIT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? OTCR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? OTDR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? OTPROFIT { get; set; } [JsonProperty, Column(DbType = "varchar(12)")] public string PROFITRATE { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? RMBCR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? RMBDR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? RMBPROFIT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLCROT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLCRRMB { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLCRTTL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLCRUSD { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLDROT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLDRRMB { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLDRTTL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? STLDRUSD { get; set; } = 0M; [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? TTLPROFIT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? USDCR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? USDDR { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? USDPROFIT { get; set; } } }