123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- using SqlSugar;
- using System;
- namespace wms.sqlsugar.model.fj
- {
- /// <summary>
- /// 货位表
- /// </summary>
- [Tenant("fj")]
- [SugarTable("Base_WareCell")]
- public partial class BaseWarecell : BaseModel
- {
- /// <summary>
- /// 仓库ID
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
- public long WarehouseId { get; set; }
- /// <summary>
- /// 仓库编码
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string WarehouseCode { get; set; }
- /// <summary>
- /// 库区ID
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
- public long WareAreaId { get; set; }
- /// <summary>
- /// 是否停用 0正常 1停用
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int IsStop { get; set; }
- /// <summary>
- /// 货位编码
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string Code { get; set; }
- /// <summary>
- /// 货位名称
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
- public string Name { get; set; }
- /// <summary>
- /// 货位状态 0空货位 1满货位
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int StateNum { get; set; }
- /// <summary>
- /// 货位类型 0立库货位 1平库货位
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int TypeNum { get; set; }
- /// <summary>
- /// 货位大小
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public long Size { get; set; }
- /// <summary>
- /// 行
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int Row { get; set; }
- /// <summary>
- /// 列
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int Col { get; set; }
- /// <summary>
- /// 层
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int Layer { get; set; }
- /// <summary>
- /// 深度
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int Depth { get; set; }
- /// <summary>
- /// 巷道
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int Tunnel { get; set; }
- /// <summary>
- /// 堆垛机
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string SCRel { get; set; }
- /// <summary>
- /// 容器ID
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = true)]
- public long? ContGrpId { get; set; }
- /// <summary>
- /// 容器编码
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
- public string ContGrpBarCode { get; set; }
- /// <summary>
- /// 货架
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
- public string Shelf { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = false)]
- public string Memo { get; set; }
- /// <summary>
- /// 添加用户
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string AddWho { get; set; }
- /// <summary>
- /// 添加时间
- /// </summary>
- [SugarColumn(ColumnDataType = "datetime", IsNullable = false)]
- public DateTime AddTime { get; set; }
- /// <summary>
- /// 更新用户
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string EditWho { get; set; }
- /// <summary>
- /// 更新时间
- /// </summary>
- [SugarColumn(ColumnDataType = "datetime", IsNullable = false)]
- public DateTime EditTime { get; set; }
- }
- }
|