New file |
| | |
| | | using HH.WCS.Mobox3.FJJT.models; |
| | | using SqlSugar; |
| | | using System; |
| | | |
| | | namespace HH.WCS.Mobox3.FJJT { |
| | | [SugarTable("TN_Function_Area")] |
| | | public class FunctionArea : BaseModel { |
| | | |
| | | |
| | | /// <summary> |
| | | /// Area、Zone、Warehouse、Location |
| | | /// </summary> |
| | | public string S_MASTER_CLS { get; set; } |
| | | public string S_MASTER_CODE { get; set; } |
| | | /// <summary> |
| | | /// 0 – 无 1 – 收货 2 – 检验 3 – 理货 4 – 分拣 5 – 发货 |
| | | /// 6 – 不合格品 |
| | | /// 10 – 入库接驳 11 – 出库接驳 |
| | | /// </summary> |
| | | public int N_TYPE { get; set; } |
| | | public int N_PRIORITY { get; set; } |
| | | public string S_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 0 – 库区 1 – 货位 2 – 逻辑库区 |
| | | /// </summary> |
| | | public int N_FA_TYPE { get; set; } |
| | | public string S_FA_CODE { get; set; } |
| | | public string S_FA_NAME { get; set; } |
| | | } |
| | | } |