using System; using System.Collections.Generic; using System.Text; namespace WIDESEA.Common.CustomModels { public class JK_LOCATION { /// /// 物料编码 /// public string ITEMNO { get; set; } /// /// 仓库编码-默认 /// public string WAREHOUSEID { get; set; } = "4050"; /// /// 移动前货位号 /// public string OLD_LOCATIONNUMBER { get; set; } /// /// 当前货位号 /// public string NOW_LOCATIONNUMBER { get; set; } /// /// 外箱条码 /// public string OUTITEMCODE { get; set; } /// /// 内箱条码 /// public string INITEMCODE { get; set; } /// /// 数量 /// public string QTY { get; set; } /// /// 移动日期 /// public DateTime? UPDATA_DATE { get; set; } = null; /// /// 入库日期 /// public DateTime? INBOUND_DATE { get; set; } /// /// 操作人--工号 /// public string USER_ID { get; set; } /// /// 读取标识--默认为0:未读取-0,已读取-1 /// public decimal READ_FLAG { get; set; } = 0; /// /// 备用字段1 /// public string FIELD1 { get; set; } /// /// 备用字段2 /// public string FIELD2 { get; set; } /// /// 备用字段3 /// public string FIELD3 { get; set; } /// /// 备用字段4 /// public string FIELD4 { get; set; } /// /// 备用字段5 /// public string FIELD5 { get; set; } /// /// 入库类型--1-采购收货,2-赠品,3-库存异动 /// public decimal TASKTYPE { get; set; } = 1; /// /// 主健 /// public int ID { get; set; } } }