New file |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | |
| | | using SqlSugar; |
| | | |
| | | namespace HH.WCS.Mobox3.AnGang.models { |
| | | /// <summary> |
| | | /// 【旧】盘点计划表 |
| | | /// </summary> |
| | | [SugarTable("TN_Count_Plan")] |
| | | public class TN_Count_Plan : BaseModel { |
| | | /// <summary> |
| | | /// 盘点计划号 |
| | | /// </summary> |
| | | public string S_CP_NO { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 盘点类型:货物盘点/货位盘点 |
| | | /// </summary> |
| | | public string S_TYPE { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 盘点状态:0 – 未执行 1 – 启动中 2 – 执行中 3 – 完成 4 – 出错 |
| | | /// </summary> |
| | | public int N_B_STATE { get; set; } = 0; |
| | | |
| | | ///// <summary> |
| | | ///// 计划盘点物料数量 |
| | | ///// </summary> |
| | | //public int N_PLAN_TOTAL { get; set; } |
| | | |
| | | // ------ |
| | | |
| | | public string S_LOC_CODE { get; set; } = ""; |
| | | |
| | | public string S_ITEM_CODE { get; set; } = ""; |
| | | } |
| | | } |