T_TaskFlow.cs
958 Bytes
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
using SqlSugar;
using System;
namespace HH_WCS_Standard
{
public class T_TaskFlow
{
public int Id { get; set; }
public int Menu { get; set; }
public string TaskType { get; set; }
public string EntranceType { get; set; }
public string ExitType { get; set; }
public int Setp { get; set; }
private int _NowState;
public int NowState
{
get
{
return _NowState;
}
set
{
_NowState = value;
e_NowState = (E_TaskState)Enum.Parse(typeof(E_TaskState), _NowState.ToString());
}
}
[SugarColumn(IsIgnore = true)]
public E_TaskState e_NowState { get; set; }
public int NextState { get; set; }
public string FromPlace { get; set; }
public string ToPlace { get; set; }
public string Remark { get; set; }
}
}