TaskPreviewModel.cs
1.02 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 任务预览
/// </summary>
public partial class TaskPreviewModel
{
/// <summary>
/// 任务地图 string(20),RFID值 ,必填"
/// </summary>
public string TaskMap { 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; }
public TaskPreviewModel()
{
}
}
}