I_Task.cs
1.41 KB
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
using PropertyChanged;
using SqlSugar;
using System;
namespace HH_WCS_Standard
{
[ImplementPropertyChanged]
public class I_Task
{
public string tNo { get; set; }
public string tNo_WMS { get; set; }
public string preTaskNo { get; set; }
public string Type { get; set; }
public int TaskFlow { get; set; }
public int TaskSetp { get; set; }
public int NowState { get; set; }
public int NextState { get; set; }
public string PalletOrBoxNo { get; set; }
public int Priority { get; set; }
public int Roadway { get; set; }
public int ForkNo { get; set; }
public string FromPlace { get; set; }
public string ToPlace { get; set; }
public string EntrancePlace { get; set; }
public string ExitPlace { get; set; }
public string ErrorMsg { get; set; }
public DateTime Task_CreateTime { get; set; }
public string Task_CreateWho { get; set; }
public DateTime? Task_StartTime { get; set; }
public DateTime? Task_FinishTime { get; set; }
public int SendAgainFlag { get; set; }
public int DeleteFlag { get; set; }
public int EmptyOutFlag { get; set; }
public int FullInFlag { get; set; }
public string FullInPlace { get; set; }
public string Height { get; set; }
public string Weight { get; set; }
}
}