You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
3.5 KiB
C#

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_wmsrate_test", DisableSyncStructure = true)]
public partial class WmsWmsrateTest {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? APFEE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? ARFEE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ASSOCIATEDNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CHARGEUNIT { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID2 { get; set; }
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; } = "getdate()";
[JsonProperty, Column(DbType = "varchar(20)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CUSTOMNO { get; set; }
[JsonProperty]
public int? FEEDAYS { get; set; }
[JsonProperty]
public int? FEEDAYSAP { get; set; } = 0;
[JsonProperty, Column(DbType = "varchar(20)")]
public string GOODSGRADE { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(100)")]
public string GOODSMODEL { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string GOODSNAME { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? GOODSOUTFEE { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? GOODSOUTFEEAP { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? GOODSPACK { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? GOODSPACKSTOCK { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? GOODSRKSL { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? GOODSSLICE { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(20)")]
public string GOODSSTANDARD { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? GOODSSTOCK { get; set; }
[JsonProperty]
public DateTime? INDATE { get; set; }
[JsonProperty]
public bool? ISLOCK { get; set; }
[JsonProperty]
public bool? ISWMSOUT { get; set; } = false;
[JsonProperty]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty]
public DateTime? OUTDATE { get; set; }
[JsonProperty]
public DateTime? OUTDATEAP { get; set; }
[JsonProperty]
public DateTime? STARTBILLINGDATE { get; set; }
[JsonProperty]
public DateTime? STARTBILLINGDATEAP { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string STORAGENAME { get; set; }
[JsonProperty]
public int? WMSDAYS { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string WMSNO { get; set; }
}
}