jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using HH.WMS.Entitys.Basic;
using HH.WMS.Entitys.Entitys;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Check
{
    public class CheckAuditPara
    {
        public CheckAuditPara()
        {
            //trayItemMsts = new List<TN_WM_B_TRAY_ITEM_MSTEntity>();
            checkListHistorys = new List<TN_WM_CHECK_LIST_HISTORYEntity>();
            checkLists = new List<TN_WM_CHECK_LISTEntity>();
            stockQtys = new List<TN_WM_B_STOCK_QTYEntity>();
            areaQtys = new List<TN_WM_B_AREA_QTYEntity>();
        }
 
        /// <summary>
        /// 仓库编码
        /// </summary>
        public string stockCode { get; set; }
 
        /// <summary>
        /// 库区编码
        /// </summary>
        public string areaCode { get; set; }
 
        /// <summary>
        /// 审核参数
        /// </summary>
        public CheckAuditDto checkAuditDto { get;set; }
 
        /// <summary>
        /// 审核状态
        /// </summary>
        public string state { get; set; }
 
        /// <summary>
        /// 是否最终审核
        /// </summary>
        public bool isEnd { get; set; }
 
        /// <summary>
        /// 盘点单主表
        /// </summary>
        public TN_WM_CHECK_MSTEntity checkMst { get; set; }
 
        /// <summary>
        /// 盘点数据列表
        /// </summary>
        public List<TN_WM_CHECK_LISTEntity> checkLists { get; set; }
 
        /// <summary>
        /// 盘点数据历史列表
        /// </summary>
        public List<TN_WM_CHECK_LIST_HISTORYEntity> checkListHistorys { get; set; }
 
        /// <summary>
        /// 托盘物料关联集合
        /// </summary>
        //public List<TN_WM_B_TRAY_ITEM_MSTEntity> trayItemMsts { get; set; }
 
        /// <summary>
        /// 上架记录
        /// </summary>
        public List<TN_WM_UP_HISTORYEntity> upHis { get; set; }
 
        /// <summary>
        /// 下架记录
        /// </summary>
        public List<TN_WM_DOWN_HISTORYEntity> downHis { get; set; }
 
        /// <summary>
        /// 仓库库存
        /// </summary>
        public List<TN_WM_B_STOCK_QTYEntity> stockQtys { get; set; }
 
        /// <summary>
        /// 库区库存
        /// </summary>
        public List<TN_WM_B_AREA_QTYEntity> areaQtys { get; set; }
    }
}