TaskSplitModel.cs
1.64 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
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 任务编辑
/// </summary>
public partial class TaskSplitModel
{
/// <summary>
/// "任务id,string(20),唯一,必填
/// </summary>
public string taskID { get; set; }
/// <summary>
/// "子动作编号,int,必填
/// </summary>
public int SeriaNo { get; set; }
/// <summary>
/// "小车动作类型,int,必填"
/// </summary>
public int agvTaskType { get; set; }
/// <summary>
/// 起点,string(20),RFID值 ,必填"
/// </summary>
public string fromPoint { get; set; }
/// <summary>
/// "终点,string(20),RFID值,必填"
/// </summary>
public string toPoint { get; set; }
/// <summary>
/// 起点区域,string(20),"必填",不能为空
/// </summary>
public string fromArea { get; set; }
/// <summary>
/// 终点区域,string(20),"必填",不能为空
/// </summary>
public string toArea { get; set; }
/// <summary>
/// 等待点等待时间
/// </summary>
public int waitTime { get; set; }
/// <summary>
/// "任务类型,string(50) ,"insert"增加,"update"更新,"delete"删除,必填"
/// </summary>
public string type { get; set; }
public TaskSplitModel()
{
SeriaNo = 0;
agvTaskType = 0;
waitTime = 0;
}
}
}