MaterialEntity.cs
1.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
using System.Collections.Generic;
using System.Text;
namespace Hh.Mes.POJO.ApiEntity
{
/// <summary>
/// 物料接收实体 物料主数据 MOM_HH_001
/// </summary>
public class MaterialEntity
{
/// <summary>
///
/// </summary>
public string plmeid { get; set; }
public string factory_code { get; set; }
public string mater_code { get; set; }
public string mater_name { get; set; }
public string unit_code { get; set; }
public string crux { get; set; }
public string format { get; set; }
public string weight { get; set; }
public string type { get; set; }
/// <summary>
/// 生协/采购属性
/// <code>
/// F:采购
/// E:自制
/// 自制/采购:E/F
/// 虚拟件:X
/// 非库存:N
/// 外协:W
/// </code>
/// </summary>
public string procurement_attribute { get; set; }
public string mt_classify { get; set; }
public string mt_classify_name { get; set; }
public string diameter { get; set; }
public string types { get; set;}
public string thickness { get; set; }
/// <summary>
/// 1可以0禁用
/// </summary>
public string activeFlag { get; set; }
/// <summary>
/// 物料类型
/// </summary>
public string materialType { get; set; }
/// <summary>
/// 规格
/// </summary>
public string specifications { get; set; }
}
}