Location.cs
879 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
42
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model
{
[Table("location")]
public class Location
{
public int Id { get; set; }
public string Code { get; set; }
public string WarehouseCode { get; set; }
public int Row { get; set; }
public int Line { get; set; }
public int Layer { get; set; }
public int Roadway { get; set; }
public string ContainerCode { get; set; }
public string Status { get; set; }
/// <summary>
/// 行索引,1=左1,2=左2,3=右1,4=右2
/// </summary>
public int RowIndex { get; set; }
public string UserDef1 { get; set; }
public string Type { get; set; }
}
}