TaskPathModel.cs
1018 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
39
40
41
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 任务路径
/// </summary>
public partial class TaskPathModel
{
/// <summary>
/// "序号,int,
/// </summary>
public int SerialNo { get; set; }
/// <summary>
/// "RFID值,string(20),
/// </summary>
public string strBarcode { get; set; }
/// <summary>
/// "X坐标,int
/// </summary>
public int intX { get; set; }
/// <summary>
/// "Y坐标,int
/// </summary>
public int intY { get; set; }
/// <summary>
/// "int,1为X正;2为Y正;3为X负;4为Y负;0为终点
/// </summary>
public int pathDriection { get; set; }
public TaskPathModel()
{
SerialNo = 0;
intX = 0;
intY = 0;
pathDriection = 0;
}
}
}