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 = "sys_profitfieldset", DisableSyncStructure = true)] public partial class SysProfitfieldset { [JsonProperty, Column(DbType = "varchar(36)")] public string COMPANYID { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string GID { get; set; } [JsonProperty] public bool? OTCR { get; set; } [JsonProperty] public bool? OTDR { get; set; } [JsonProperty] public bool? OTPROFIT { get; set; } [JsonProperty] public bool? RMBCR { get; set; } [JsonProperty] public bool? RMBDR { get; set; } [JsonProperty] public bool? RMBPROFIT { get; set; } [JsonProperty] public bool? TEU { get; set; } [JsonProperty] public bool? TTLCR { get; set; } [JsonProperty] public bool? TTLDR { get; set; } [JsonProperty] public bool? TTLPROFIT { get; set; } [JsonProperty] public bool? USDCR { get; set; } [JsonProperty] public bool? USDDR { get; set; } [JsonProperty] public bool? USDPROFIT { get; set; } } }