1
huangxiaoqiang
10 小时以前 a296223898d61a9838bbd35ed75c87575e308a36
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
using SqlSugar;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models;
 
/// <summary>
/// 库区表
///</summary>
[SugarTable("Dt_WareAreaInfo")]
public class Dt_WareAreaInfo : BaseEntity
{
    /// <summary>
    /// 备  注: 主键
    /// 默认值:
    ///</summary>
    [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)]
    public int Id { get; set; }
 
 
    /// <summary>
    /// 备  注:库区代码
    /// 默认值:
    ///</summary>
    [SugarColumn(ColumnName = "WareAreaCode")]
    public string WareAreaCode { get; set; } 
 
    /// <summary>
    /// 备  注:库区名称
    /// 默认值:
    ///</summary>
    [SugarColumn(ColumnName = "WareAreaName")]
    public string? WareAreaName { get; set; }
 
    /// <summary>
    /// 备  注:库区类型
    /// 默认值:
    ///</summary>
    [SugarColumn(ColumnName = "WareAreaId")]
    public string? WareAreaId { get; set; }
}