|
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
|
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_work_center_station")]
public partial class base_work_center_station
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 工作中心编码
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string workCenterCode { get; set; }
/// <summary>
/// 工位编码
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string workStationCode { get; set; }
}
}
|