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_detail", DisableSyncStructure = true)] public partial class WmsRateDetail { /// /// 惟一编号 /// [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); /// /// 关联号 /// [JsonProperty, Column(DbType = "varchar(100)")] public string ASSOCIATEDNO { get; set; } /// /// 创建时间 /// [JsonProperty, Column(InsertValueSql = "getdate()")] 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; } = 0; /// /// 计费单价 /// [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? FEEPRICE { get; set; } = 0M; /// /// 计费区间 /// [JsonProperty] public int? FEESCALE { get; set; } /// /// 费用类别 /// [JsonProperty] public int? FEETYPE { get; set; } = 0; /// /// 计费单位 /// [JsonProperty, Column(DbType = "varchar(50)")] public string FEEUNIT { get; set; } /// /// 出库量 /// [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? GOODSPFSL { get; set; } = 0M; /// /// 最后一次操作时间 /// [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? MODIFIEDTIME { get; set; } /// /// 最后一次操作人 /// [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } /// /// 仓储费 /// [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? OUTFEE { get; set; } = 0M; /// /// 备注 /// [JsonProperty, Column(DbType = "varchar(100)")] public string REMARK { get; set; } /// /// 开始计费日期 /// [JsonProperty] public DateTime? STARTBILLINGDATE { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string WMSOUTGID { get; set; } } }