Blame view

sys/Hh.Mes.POJO/WebEntity/bus/bus_pro_plan_detail.cs 2.91 KB
胡菁 authored
1
2
3
4
5
6
7
using System;
using System.Collections.Generic;
using System.Security.Principal;
using System.Text;
using Hh.Mes.POJO.Entity;
using SqlSugar;
胡菁 authored
8
namespace Hh.Mes.POJO.Entity
胡菁 authored
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
43
44
45
46
47
48
49
50
51
52
{
    [SugarTable("bus_pro_plan_detail")]
    public partial class bus_pro_plan_detail : base_entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        /// <summary>
        /// 本身Key
        /// </summary>
        [SugarColumn(IsNullable = false)]
        public Guid bodyKeys { get; set; }

        /// <summary>
        /// 生产订单头表keys
        /// </summary>
        [SugarColumn(ColumnDescription = "生产订单头表keys", IsNullable = false)]
        public Guid proPlanHeadKeys { get; set; }

        /// <summary>
        /// 生产订单号
        /// </summary>
        [SugarColumn(ColumnDescription = "生产订单号", IsNullable = true)]
        public string workOrderCode { get; set; }

        /// <summary>
        /// 生产订单名称
        /// </summary>
        [SugarColumn(ColumnDescription = "生产订单名称", IsNullable = true)]
        public string workOrderName { get; set; }

        /// <summary>
        /// 线体编号
        /// </summary>
        [SugarColumn(ColumnDescription = "线体编号", IsNullable = true)]
        public string lineCode { get; set; }

        /// <summary>
        /// 产品编码
        /// </summary>
        [SugarColumn(ColumnDescription = "产品编码", IsNullable = false)]
胡菁 authored
53
        public string productCode { get; set; }
胡菁 authored
54
55
56
57
58
59
60
61
62
63
64

        /// <summary>
        /// 产品名称
        /// </summary>
        [SugarColumn(ColumnDescription = "产品名称", IsNullable = false)]
        public string productName { get; set; }

        /// <summary>
        /// 预计使用量
        /// </summary>
        [SugarColumn(ColumnDescription = "预计使用量", IsNullable = false)]
胡菁 authored
65
        public int quantity { get; set; }
胡菁 authored
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97

        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnDescription = "备注", IsNullable = true)]
        public string remark { get; set; }

        /// <summary>
        /// 预留字段1
        /// </summary>
        [SugarColumn(ColumnDescription = "预留字段1", IsNullable = true)]
        public string extend1 { get; set; }

        /// <summary>
        /// 预留字段2
        /// </summary>
        [SugarColumn(ColumnDescription = "预留字段2", IsNullable = true)]
        public string extend2 { get; set; }

        /// <summary>
        /// 预留字段3
        /// </summary>
        [SugarColumn(ColumnDescription = "预留字段3", IsNullable = true)]
        public string extend3 { get; set; }

        /// <summary>
        /// 预留字段4
        /// </summary>
        [SugarColumn(ColumnDescription = "预留字段4", IsNullable = true)]
        public string extend4 { get; set; }
    }
}