Blame view

sys/Hh.Mes.POJO/WebEntity/api/api_workOrder_detail.cs 1.45 KB
赖素文 authored
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
43
44
45
46
47
48
49
50
51
52
53
54
using Hh.Mes.POJO.ApiEntity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;

namespace Hh.Mes.POJO.WebEntity.api
{
    /// <summary>
    /// 订单请求记录_表身
    /// </summary>
    public class api_workOrder_detail
    {
        public Guid headKeys { get; set; } = Guid.NewGuid();
        /// <summary>
        /// 生产计划号
        /// </summary>
        public string planCode { get; set; }
        /// <summary>
        /// 物料编码
        /// </summary>
        public string materialCode { get; set; }
        /// <summary>
        /// 物料名称
        /// </summary>
        public string materialName { get; set; }
        /// <summary>
        /// 需求数量
        /// </summary>
        public decimal qty { get; set; }
        /// <summary>
        /// 需求单位
        /// </summary>
        public string whCode { get; set; }
        /// <summary>
        /// 工位编码
        /// </summary>
        public string stationCode { get; set; }
        /// <summary>
        /// 工序编码
        /// </summary>
        public string procedCode { get; set; }
        /// <summary>
        /// 预留字段3
        /// </summary>
        public string ylzd3 { get; set; }
        /// <summary>
        /// 预留字段4
        /// </summary>
        public string ylzd4 { get; set; }
        public DateTime createTime { get; set; } = DateTime.Now;
        public string createBy { get; set; }
    }
}