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.
297 lines
7.4 KiB
C#
297 lines
7.4 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_out", DisableSyncStructure = true)]
|
|
public partial class WmsOut {
|
|
|
|
/// <summary>
|
|
/// 惟一编号
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
/// <summary>
|
|
/// 会计期间
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
|
public string ACCDATE { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? APFEE { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string ARCLIENT { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string ARCLIENTWMSOUT { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 库位编码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string AREACODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位名称
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string AREANAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? ARFEE { get; set; } = 0M;
|
|
|
|
/// <summary>
|
|
/// 出库费应收_2
|
|
/// </summary>
|
|
[JsonProperty, Column(Name = "ARFEE_2", DbType = "numeric(18,2)")]
|
|
public decimal? ARFEE2 { get; set; } = 0M;
|
|
|
|
/// <summary>
|
|
/// 关联号
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ASSOCIATEDNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓单明细号
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BZTCHNO { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CHARGEUNIT { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CLIENTBSNO { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 客户编码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CLIENTCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CLIENTGID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CLIENTNAMEOLD { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? CREATETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CUSTOMNO { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 废除时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? DELETETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 废除操作人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string DELETEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? DODATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用状态
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public bool? FEESTATUS { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// 货物编号
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string GOODSCODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 型号
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSMODEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货物名称
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string GOODSNAMEID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓储费用
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? GOODSOUTFEE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? GOODSOUTFEEAP { get; set; } = 0M;
|
|
|
|
/// <summary>
|
|
/// 包装
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string GOODSPACK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? GOODSPACKPFSL { get; set; } = 0M;
|
|
|
|
/// <summary>
|
|
/// 出库量
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "numeric(18,6)")]
|
|
public decimal? GOODSPFSL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 规格
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSSTANDARD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货物类型
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string GOODSTYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string INGIDNEW { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string INSPECTIONNO { get; set; } = "";
|
|
|
|
[JsonProperty]
|
|
public bool? ISCHANGE { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool? ISCOLLECTING { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// 是否废除
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public bool? ISDELETE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISLOCK { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool? ISVOU { get; set; }
|
|
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime? LOCKTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string LOCKUSER { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? MARKETVALUE { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string MBLNONEW { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? MODIFIEDTIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后一次更新操作人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string MODIFIEDUSER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? OLDCUSTFEEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string REMARK2 { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 仓库编码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string STORAGECODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库名称
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string STORAGENAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string STOREMAN { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string TOTALNO { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string TRUCKNAME { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string TRUCKNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? VALIDDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string VOUNO { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "WHS_CODE", DbType = "varchar(20)")]
|
|
public string WHSCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string WMSOP { get; set; } = "";
|
|
|
|
[JsonProperty]
|
|
public byte? WMSOUTSTATUS { get; set; } = 0;
|
|
|
|
}
|
|
|
|
}
|