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_blissuelist_nottl", DisableSyncStructure = true)] public partial class VOpBlissuelistNottl { [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string LINKGID { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal? NOTTL { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal? RMBNOTTL { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal? USDNOTTL { get; set; } } }