using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BASE_MATITEM")] public partial class BASE_MATITEM { public BASE_MATITEM(){ } /// /// Desc:物料编码 /// Default: /// Nullable:False /// public string F_NO {get;set;} /// /// Desc:是否停用 /// Default: /// Nullable:False /// public int F_ISSTOP {get;set;} /// /// Desc:是否删除 /// Default: /// Nullable:False /// public int F_ISDELETE {get;set;} /// /// Desc:物料描述 /// Default: /// Nullable:True /// public string F_NAME {get;set;} /// /// Desc:外部编号 /// Default: /// Nullable:False /// public string F_OUTNO {get;set;} /// /// Desc:物料组 /// Default: /// Nullable:False /// public string F_MATGRPNO {get;set;} /// /// Desc:规格 /// Default: /// Nullable:True /// public string F_MATSPEC {get;set;} /// /// Desc:图号 /// Default: /// Nullable:True /// public string F_FIGURENUM {get;set;} /// /// Desc:商品体积 /// Default: /// Nullable:False /// public decimal F_VOLUME {get;set;} /// /// Desc:体积单位 /// Default: /// Nullable:True /// public string F_VOLUMEUNIT {get;set;} /// /// Desc:体积等级 /// Default: /// Nullable:True /// public string F_VOLUMELEVEL {get;set;} /// /// Desc:长 /// Default: /// Nullable:False /// public decimal F_LENGTH {get;set;} /// /// Desc:宽 /// Default: /// Nullable:False /// public decimal F_WIDTH {get;set;} /// /// Desc:高 /// Default: /// Nullable:False /// public decimal F_HEIGHT {get;set;} /// /// Desc:毛重 /// Default: /// Nullable:False /// public decimal F_WEIGHT {get;set;} /// /// Desc:重量单位 /// Default: /// Nullable:True /// public string F_WEIGHTUNIT {get;set;} /// /// Desc:物料类型 /// Default: /// Nullable:True /// public string F_MATTYPE {get;set;} /// /// Desc:ABC分类 /// Default: /// Nullable:True /// public string F_ABCTYPE {get;set;} /// /// Desc:默认存储仓位 /// Default: /// Nullable:True /// public string F_BASELOCATION {get;set;} /// /// Desc:基本单位 /// Default: /// Nullable:False /// public string F_BASEUNITNO {get;set;} /// /// Desc:单托盘载量 /// Default: /// Nullable:False /// public int F_PALLETQTY {get;set;} /// /// Desc:单料箱载量 /// Default: /// Nullable:False /// public int F_BOXQTY {get;set;} /// /// Desc:过期时间(分) /// Default: /// Nullable:False /// public int F_EXPTIME {get;set;} /// /// Desc:最高库存 /// Default: /// Nullable:False /// public decimal F_MAXQTY {get;set;} /// /// Desc:最低库存 /// Default: /// Nullable:False /// public decimal F_MINQTY {get;set;} /// /// Desc:质检类型 /// Default: /// Nullable:True /// public string F_QCTYPECODE {get;set;} /// /// Desc:质检数值 /// Default: /// Nullable:True /// public decimal F_QCQTY {get;set;} /// /// Desc:质检地址 /// Default: /// Nullable:True /// public string F_QCADDR {get;set;} /// /// Desc:默认仓库 /// Default: /// Nullable:True /// public string F_WAREHOUSENO {get;set;} /// /// Desc:离线区域 /// Default: /// Nullable:True /// public string F_OFFWAREA {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string F_MEMO {get;set;} /// /// Desc:创建用户编号 /// Default: /// Nullable:False /// public string F_ADDUSERNO {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime F_ADDTIME {get;set;} /// /// Desc:编辑用户编号 /// Default: /// Nullable:False /// public string F_EDITUSERNO {get;set;} /// /// Desc:编辑时间 /// Default: /// Nullable:False /// public DateTime F_EDITTIME {get;set;} /// /// Desc:尺寸单位 /// Default: /// Nullable:True /// public string F_DEFINE01 {get;set;} /// /// Desc:接口交互标识 /// Default: /// Nullable:True /// public string F_DEFINE02 {get;set;} /// /// Desc:管理方式:单件管理,批次管理 /// Default: /// Nullable:True /// public string F_DEFINE03 {get;set;} /// /// Desc:最小包装单位 /// Default: /// Nullable:False /// public string F_DEFINE04 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string F_DEFINE05 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string F_DEFINE06 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string F_DEFINE07 {get;set;} /// /// Desc:SAP原单位 /// Default: /// Nullable:True /// public string F_DEFINE08 {get;set;} /// /// Desc:SAP原数量 /// Default: /// Nullable:True /// public string F_DEFINE09 {get;set;} /// /// Desc:导入时返回的信息 /// Default: /// Nullable:True /// public string F_DEFINE10 {get;set;} /// /// Desc:最小包装单位转换率 /// Default: /// Nullable:False /// public int F_FACTOR {get;set;} /// /// Desc:0:非2BIN。1:2BIN /// Default: /// Nullable:False /// public int F_IS2BIN { get; set; } /// /// Desc:SAP报工货位 /// Default: /// Nullable:False /// public string F_EMPSER { get; set; } } }