ChangeAGVModel.cs
1.45 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// AGV增加、删除、修改
/// 任务类型说明:insert时 strChooseStation不需要填值,默认空字符
/// Updte/Delete时strAgvNo作为唯一标识
/// </summary>
public partial class ChangeAGVModel
{
/// <summary>
/// "小车号,string(50),唯一,"必填"
/// </summary>
public string AgvNo { get; set; }
/// <summary>
/// "小车所在组分类,string(20),(insert必填")
/// </summary>
public string Group { get; set; }
/// <summary>
/// "小车所在区域,string(20),(insert必填")
/// </summary>
public string AreaType { get; set; }
/// <summary>
/// "小车选择充电桩编号,string(50)"
/// </summary>
public string ChooseStation { get; set; }
/// <summary>
/// "小车是否启用,bit"
/// </summary>
public bool? isEnable { get; set; }
/// <summary>
/// "任务类型,string(50) ,"insert"增加,"update"更新,"delete"删除,必填"
/// </summary>
public string type { get; set; }
/// <summary>
/// "Agv地图"
/// </summary>
public string CurrMap { get; set; }
public ChangeAGVModel()
{
}
}
}