InventoryAlert.cs
1002 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.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("type")]
public string Type { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[Column("materialName")]
public string MaterialName { get; set; }
/// <summary>
/// 库存数量
/// </summary>
[Column("inventoryNum")]
public int? InventoryNum { get; set; }
/// <summary>
/// 预警数量
/// </summary>
[Column("alertNum")]
public int? AlertNum { get; set; }
}
}