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_dr_INV", DisableSyncStructure = true)] public partial class VOpGainDrINV { [JsonProperty, Column(DbType = "varchar(100)")] public string BSNO { get; set; } [JsonProperty, Column(DbType = "numeric(38,7)")] public decimal TTLDR { get; set; } [JsonProperty, Column(DbType = "numeric(38,7)")] public decimal TTLINVDR { get; set; } } }