wxw
2025-05-12 c7c2f7aa20427204944ba80a2704232b2f281582
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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Entity.SysEntity;
 
namespace Model.ModelVm.SysVm
{
    public class SysMaterialsDto
    {
        /// <summary>
        /// 物料号
        /// </summary>
        public string SkuNo { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string SkuName { get; set; }
 
        /// <summary>
        /// 规格
        /// </summary>
        public string Standard { get; set; }
 
        /// <summary>
        /// 审核状态
        /// </summary>
        public string AuditStatusNo { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        public string Type { get; set; }
 
        /// <summary>
        /// 是否受控
        /// </summary>
        public string IsControlled { get; set; }
 
        /// <summary>
        /// 是否免检
        /// </summary>
        public string IsInspect { get; set; }
 
        /// <summary>
        /// 来源
        /// </summary>
        public string Origin { get; set; }
 
        /// <summary>
        /// 单位
        /// </summary>
        public string UnitNo { get; set; }
 
        /// <summary>
        /// 包装
        /// </summary>
        public string PackagNo { get; set; }
 
        /// <summary>
        /// 存储环境
        /// </summary>
        public string Environment { get; set; }
 
        /// <summary>
        /// 理论重量
        /// </summary>
        public decimal? Weight { get; set; }
 
        /// <summary>
        /// 保质期
        /// </summary>
        public int? Warranty { get; set; }
 
        /// <summary>
        /// 理论单价
        /// </summary>
        public decimal? Price { get; set; }
 
        /// <summary>
        /// 审核人
        /// </summary>
        public int? AuditUser { get; set; }
 
        /// <summary>
        /// 审核时间
        /// </summary>
        public DateTime? AuditTime { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string Demo { get; set; }
 
        /// <summary>
        /// 临期
        /// </summary>
        public int AdventTime { get; set; }
 
        /// <summary>
        /// 低库存
        /// </summary>
        public int LowInventory { get; set; }
 
        /// <summary>
        /// 数量
        /// </summary>
        public int Qty { get; set; }
 
 
        [Navigate(NavigateType.OneToOne, nameof(Type))]
        public SysDictionary TypeInfo { get; set; }
 
        [Navigate(NavigateType.OneToOne, nameof(Environment))]
        public SysDictionary EnvironmentInfo { get; set; }
 
        [Navigate(NavigateType.OneToOne, nameof(UnitNo), nameof(SysUnit.UnitNo))]
        public SysUnit UnitInfo { get; set; }
 
        [Navigate(NavigateType.OneToOne, nameof(PackagNo), nameof(SysPackag.PackagNo))]
        public SysPackag PackagInfo { get; set; }
    }
}