zhao
2021-07-09 0821715ebc11d3934d0594a1cc2c39686d808906
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Dto
{
    public class ZCTransferDto
    {
        public ZCTransferDto()
        {
            moveStockEnableAms = moveStockEnableAms ?? "N";
            transferEnableAms = transferEnableAms ?? "N";
        }
 
        public string itemCode { get; set; }
        public string itemName { get; set; }
        public int transferMax { get; set; }
        public string startArea { get; set; }
        public string endArea { get; set; }
        public DateTime startTime { get; set; }
        public DateTime endTime { get; set; }
 
        public string workFlowCode { get; set; }
        public string workFlowName { get; set; }
        public string transType { get; set; }
 
        public string isTransport { get; set; }
 
        public string moveStockEnableAms { get; set; }
        public string transferEnableAms { get; set; }
    }
}