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 = "wms_rate", DisableSyncStructure = true)] public partial class WmsRate { /// /// 惟一编号 /// [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } /// /// 增值价 /// [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? ADDPRICE { get; set; } = 0M; /// /// 关联GID /// [JsonProperty, Column(DbType = "varchar(100)")] public string BSNO { get; set; } /// /// 封顶价 /// [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? CAPPRICE { get; set; } = 0M; /// /// 创建时间 /// [JsonProperty] public DateTime? CREATETIME { get; set; } /// /// 创建人 /// [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } /// /// 客户名称 /// [JsonProperty, Column(DbType = "varchar(20)")] public string CUSTOMERNAME { get; set; } /// /// 结束计费日期 /// [JsonProperty] public DateTime? ENDBILLINGDATE { get; set; } /// /// 计费等级 /// [JsonProperty] public int? FEEGRADE { get; set; } /// /// 费用中文名称 /// [JsonProperty, Column(DbType = "varchar(100)")] public string FEENAME { get; set; } = ""; /// /// 计费单价 /// [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? FEEPRICE { get; set; } /// /// 计费区间 /// [JsonProperty] public int? FEESCALE { get; set; } /// /// 费用类别 /// [JsonProperty] public int? FEETYPE { get; set; } = 0; /// /// 计费单位 /// [JsonProperty, Column(DbType = "varchar(20)")] public string FEEUNIT { get; set; } /// /// 是否是货权转移 /// [JsonProperty] public bool? ISCHANGE { get; set; } = false; /// /// 最后一次操作时间 /// [JsonProperty] public DateTime? MODIFIEDTIME { get; set; } /// /// 最后一次操作人 /// [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } /// /// 费率类型 /// [JsonProperty] public int? RATETYPE { get; set; } = 1; /// /// 备注 /// [JsonProperty, Column(DbType = "varchar(1024)")] public string REMARK { get; set; } } }