bus_pro_plan_detail_bom_rel.cs
1.13 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
using System;
using System.Collections.Generic;
using System.Security.Principal;
using System.Text;
using Hh.Mes.POJO.Entity;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("bus_pro_plan_detail_bom_rel")]
public partial class bus_pro_plan_detail_bom_rel : base_entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 生产订单头表keys
/// </summary>
[SugarColumn(ColumnDescription = "生产订单头表keys", IsNullable = false)]
public Guid proPlanHeadKeys { get; set; }
/// <summary>
/// 生产订单明细表keys
/// </summary>
[SugarColumn(ColumnDescription = "生产订单明细表keys", IsNullable = false)]
public Guid proPlanDetailBodyKeys { get; set; }
/// <summary>
/// 生产订单明细BOM表keys
/// </summary>
[SugarColumn(ColumnDescription = "生产订单明细BOM表keys", IsNullable = false)]
public Guid proPlanDetailBomBodyKeys { get; set; }
}
}