InventoryAlert.cs
858 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 库存预警表
/// </summary>
[Table("inventory_Alert")]
public partial class InventoryAlert : SysEntity
{
public InventoryAlert()
{
}
/// <summary>
/// 物料编码
/// </summary>
[Column("materialCode")]
public string MaterialCode { get; set; }
/// <summary>
/// 物料类别
/// </summary>
[Column("shipmentCode")]
public string ShipmentCode { get; set; }
/// <summary>
/// 库存数量
/// </summary>
[Column("Qty")]
public decimal? Qty { get; set; }
/// <summary>
/// 预警数量
/// </summary>
[Column("hadQty")]
public decimal? HadQty { get; set; }
}
}