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 = "info_sale_profitShareDetail", DisableSyncStructure = true)] public partial class InfoSaleProfitShareDetail { [JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? BEFORESHAREPR { get; set; } [JsonProperty] public short? MONTHNUM { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string PLANID { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? PROFITDOWN { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? PROFITUP { get; set; } [JsonProperty, Column(DbType = "varchar(500)")] public string REMARKS { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? SHAREPR { get; set; } } }