InventoryModel.cs
1.19 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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 库存查询模型
/// </summary>
public partial class InventoryModel
{
/// <summary>
/// 仓库类型
/// </summary>
[Column("warehouseType")]
public string WarehouseType { get; set; }
/// <summary>
/// 库位编号
/// </summary>
[Column("locationCode")]
public string LocationCode { get; set; }
/// <summary>
/// 容器编码
/// </summary>
[Column("containerCode")]
public string ContainerCode { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("materialCode")]
public string MaterialCode { get; set; }
/// <summary>
/// 批号
/// </summary>
[Column("lot")]
public string Lot { get; set; }
/// <summary>
/// 库存状态
/// </summary>
[Column("status")]
public string Status { get; set; }
/// <summary>
/// 数量
/// </summary>
[Column("qty")]
public decimal? Qty { get; set; }
}
}