123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- using SqlSugar;
- namespace WCS.WorkEngineering.Model.WMS
- {
- /// <summary>
- /// 垛形主表
- /// </summary>
- [Tenant("fj")]
- [SugarTable("Bill_BomSetGrp", tableDescription: "垛形主表")]
- public partial class BillBomsetgrp
- {
- /// <summary>
- /// ID
- /// </summary>
- [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, ColumnDescription = "ID")]
- public virtual long Id { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [SugarColumn(ColumnName = "Memo", Length = 500, IsNullable = true, ColumnDataType = "nvarchar", DefaultValue = "", ColumnDescription = "备注")]
- public virtual string Memo { get; set; }
- /// <summary>
- /// 创建用户
- /// </summary>
- [SugarColumn(ColumnName = "AddWho", Length = 50, ColumnDataType = "nvarchar", DefaultValue = "", IsNullable = false, ColumnDescription = "创建用户")]
- public virtual string AddWho { get; set; } = "";
- /// <summary>
- /// 更新用户
- /// </summary>
- [SugarColumn(ColumnName = "EditWho", Length = 50, ColumnDataType = "nvarchar", DefaultValue = "", IsNullable = false, ColumnDescription = "更新用户")]
- public virtual string EditWho { get; set; } = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- [SugarColumn(ColumnName = "AddTime", DefaultValue = "1900-1-1", IsNullable = false, ColumnDescription = "创建时间")]
- public virtual DateTime AddTime { get; set; } = DateTime.Now;
- /// <summary>
- /// 更新时间
- /// </summary>
- [SugarColumn(ColumnName = "EditTime", DefaultValue = "1900-1-1", IsNullable = false, ColumnDescription = "更新时间")]
- public virtual DateTime EditTime { get; set; } = DateTime.Now;
- /// <summary>
- /// 是否停用
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否停用")]
- public int IsStop { get; set; }
- /// <summary>
- /// 垛型编码
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "垛型编码")]
- public string Code { get; set; }
- /// <summary>
- /// 短垛型编码
- /// </summary>
- [SugarColumn(ColumnDataType = "smallint", IsNullable = false, ColumnDescription = "短垛型编码")]
- public short ShortCode { get; set; }
- /// <summary>
- /// 垛型名称
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false, ColumnDescription = "垛型名称")]
- public string Name { get; set; }
- /// <summary>
- /// BomCode(投料信息)
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false, ColumnDescription = "BomCode(投料信息)")]
- public string BomCode { get; set; }
- /// <summary>
- /// 帘线物料编码
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "帘线物料编码")]
- public string ProMaterCode { get; set; }
- /// <summary>
- /// 工字轮个数
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "工字轮个数")]
- public int HWCountQty { get; set; }
- /// <summary>
- /// 托盘类型
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "托盘类型")]
- public string TpTypeCode { get; set; }
- /// <summary>
- /// 层数
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "层数")]
- public int LayerCountQty { get; set; }
- /// <summary>
- /// 垛型大类
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = true, ColumnDescription = "垛型大类")]
- public int StampType { get; set; }
- /// <summary>
- /// 是否在桁架进行码垛
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "是否在桁架进行码垛")]
- public bool IsTruss { get; set; }
- }
- }
|