LocationDistribution.cs
1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 动态库位分配表
/// </summary>
[Table("location_distribution")]
public partial class LocationDistribution : SysEntity
{
public LocationDistribution()
{
}
/// <summary>
/// X
/// </summary>
[Column("pointX")]
public int? PointX { get; set; }
/// <summary>
/// Y1
/// </summary>
[Column("pointY_1")]
public int? PointY_1 { get; set; }
/// <summary>
/// Z1
/// </summary>
[Column("pointZ_1")]
public int? PointZ_1 { get; set; }
/// <summary>
/// Y2
/// </summary>
[Column("pointY_2")]
public int? PointY_2 { get; set; }
/// <summary>
/// Z2
/// </summary>
[Column("pointZ_2")]
public int? PointZ_2 { get; set; }
/// <summary>
/// 字节对比
/// </summary>
[Column("contrastName")]
public string ContrastName { get; set; }
/// <summary>
/// 字节对比起始
/// </summary>
[Column("contrastStart")]
public int? ContrastStart { get; set; }
/// <summary>
/// 字节对比结束
/// </summary>
[Column("length")]
public int? Length { get; set; }
/// <summary>
/// 巷道
/// </summary>
[Column("roadWay")]
public int? RoadWay { get; set; }
/// <summary>
/// 类型
/// </summary>
[Column("type")]
public int? Type { get; set; }
}
}