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 = "v_op_gain_sum_ttl", DisableSyncStructure = true)] public partial class VOpGainSumTtl { [JsonProperty, Column(DbType = "varchar(100)")] public string BSNO { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal OTCR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal OTDR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal RMBCR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal RMBDR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal STLOTCR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal STLOTDR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal STLRMBCR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal STLRMBDR { get; set; } [JsonProperty, Column(DbType = "numeric(20,2)")] public decimal? STLTTLCR { get; set; } [JsonProperty, Column(DbType = "numeric(20,2)")] public decimal? STLTTLDR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal STLUSDCR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal STLUSDDR { get; set; } [JsonProperty, Column(DbType = "numeric(20,2)")] public decimal? TTLCR { get; set; } [JsonProperty, Column(DbType = "numeric(20,2)")] public decimal? TTLDR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal USDCR { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal USDDR { get; set; } } }