payne
2024-04-23 36ce9b026734367cac17e6ba95cfd76c00d150d3
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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 刘文奇
 * @date : 2024/4/23下午3:31:02
 * @desc : 替代品管理
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 替代品管理
    /// </summary>
    [Table("wms_substitute_good")]
    [Comment("替代品管理")]
    public class WmsSubstituteGood : DEntityBase
    {
 
 
        /// <summary>
        /// 替代编号
        /// </summary>
        [Comment("替代编号")]
        [Required]
        [MaxLength(50)]
        public string SubstituteCode { get; set; }
 
 
        /// <summary>
        /// 物料编号
        /// </summary>
        [Comment("物料编号")]
        [Required]
        [MaxLength(50)]
        public string MaterialCode { get; set; }
 
 
        /// <summary>
        /// 物料名称
        /// </summary>
        [Comment("物料名称")]
        [Required]
        [MaxLength(50)]
        public string MaterialName { get; set; }
 
 
        /// <summary>
        /// 替代品物料编号
        /// </summary>
        [Comment("替代品物料编号")]
        [Required]
        [MaxLength(50)]
        public string SubstituteMaterialCode { get; set; }
 
 
        /// <summary>
        /// 替代品物料名称
        /// </summary>
        [Comment("替代品物料名称")]
        [Required]
        [MaxLength(50)]
        public string SubstituteMaterialName { get; set; }
 
 
        /// <summary>
        /// 替代次序
        /// </summary>
        [Comment("替代次序")]
        [Required]
 
        public int SubstituteIndex { get; set; }
 
 
        /// <summary>
        /// 是否禁用
        /// </summary>
        [Comment("是否禁用")]
        [Required]
 
        public bool IsDisabled { get; set; }
 
 
 
 
 
 
 
 
 
    }
}