| | |
| | | public string Loc { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 入库优先级表 |
| | | /// </summary> |
| | | [ST("入库优先级表")] |
| | | public class InPri : BaseModel |
| | | { |
| | | /// <summary> |
| | | /// 出库类型 0空托出 1满托出 满托出找空托入 空托出找满托入 |
| | | /// </summary> |
| | | public string Type { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 出库任务终点 |
| | | /// </summary> |
| | | public string OutEndLoc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 入库任务起点 |
| | | /// </summary> |
| | | public string InStartLoc { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 提高优先级 |
| | | /// </summary> |
| | | public int Pri { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 启用 Y/N |
| | | /// </summary> |
| | | public string Enable { get; set; } |
| | | } |
| | | |
| | | |
| | | } |