17 lines
224 B
C#
17 lines
224 B
C#
|
|
|
|||
|
|
namespace YiLiao.JingMaiLiuZhiZhen
|
|||
|
|
{
|
|||
|
|
public class StateData
|
|||
|
|
{
|
|||
|
|
//序号
|
|||
|
|
public int id;
|
|||
|
|
//状态
|
|||
|
|
public string state;
|
|||
|
|
//条件
|
|||
|
|
public string trigger;
|
|||
|
|
//备注
|
|||
|
|
public string remark;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|