| | |
| | | |
| | | using SqlSugar; |
| | | |
| | | namespace HH.WCS.Mobox3.DSZSH.Models { |
| | | namespace HH.WCS.Mobox3.DSZSH.models { |
| | | /// <summary> |
| | | /// 【框架】货位表 |
| | | /// </summary> |
| | | |
| | | [SugarTable("TN_Location")] |
| | | public class TN_Location : BaseModel { |
| | | |
| | | #region 基础属性关系 |
| | | /// <summary> |
| | | /// 货位 ID |
| | | /// </summary> |
| | |
| | | public int N_CURRENT_NUM { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// 行号 |
| | | /// </summary> |
| | | public int N_ROW { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// 列号 |
| | | /// </summary> |
| | | public int N_COL { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// 货位的层数 |
| | | /// </summary> |
| | | public int N_LAYER { get; set; } = 1; |
| | | |
| | | // BEG 初始化表格使用 |
| | | public int N_ROW_GROUP { get; set; } = 0; |
| | | public int N_POS { get; set; } = 1; |
| | | public int N_DEEP { get; set; } = 1; |
| | | public int N_ROADWAY { get; set; } = 1; |
| | | public string S_PURPOSE { get; set; } = "存储"; |
| | | public string S_TYPE { get; set; } = "常规"; |
| | | public string S_WH_CODE { get; set; } = "独山子石化"; |
| | | // END |
| | | |
| | | /// <summary> |
| | | /// 上锁状态号:0无 1入库锁 2出库锁 3其它锁 |
| | |
| | | /// 货位是否启用:Y启用 |
| | | /// </summary> |
| | | public string C_ENABLE { get; set; } = "Y"; |
| | | #endregion |
| | | |
| | | /// <summary> |
| | | /// 货位-容器 关系映射 |