payne
2024-04-25 bf915c71f7ab3fcd9a7f81ed18f3a10c68d50dc0
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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 刘文奇
 * @date : 2024/4/24下午5:51:26
 * @desc : 控制属性规则明细
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 控制属性规则明细
    /// </summary>
    [Table("wms_control_rule_detail")]
    [Comment("控制属性规则明细")]
    public class WmsControlRuleDetail : DEntityBase
    {
 
 
        /// <summary>
        /// 控制属性规则编号
        /// </summary>
        [Comment("控制属性规则编号")]
        [Required]
        [MaxLength(50)]
        public string RuleCode { get; set; }
 
 
        /// <summary>
        /// 最高库存
        /// </summary>
        [Comment("最高库存")]
 
        [Column("MaxImumqty", TypeName = "decimal(10,3)")]
        public decimal? MaxImumqty { get; set; }
 
 
        /// <summary>
        /// 最低库存
        /// </summary>
        [Comment("最低库存")]
 
        [Column("MinImumqty", TypeName = "decimal(10,3)")]
        public decimal? MinImumqty { get; set; }
 
 
        /// <summary>
        /// 安全库存
        /// </summary>
        [Comment("安全库存")]
 
        [Column("SafeImumqty", TypeName = "decimal(10,3)")]
        public decimal? SafeImumqty { get; set; }
 
 
        /// <summary>
        /// 最小库龄
        /// </summary>
        [Comment("最小库龄")]
 
        [Column("MinStorageAge", TypeName = "decimal(10,3)")]
        public decimal? MinStorageAge { get; set; }
 
 
        /// <summary>
        /// 最大库龄
        /// </summary>
        [Comment("最大库龄")]
 
        [Column("MaxStorageAge", TypeName = "decimal(10,3)")]
        public decimal? MaxStorageAge { get; set; }
 
 
        /// <summary>
        /// 是否免检
        /// </summary>
        [Comment("是否免检")]
 
        public bool? IsNotChek { get; set; }
 
 
        /// <summary>
        /// 保质期天数
        /// </summary>
        [Comment("保质期天数")]
 
        [Column("ShelfLifeDays", TypeName = "decimal(10,3)")]
        public decimal? ShelfLifeDays { get; set; }
 
 
        /// <summary>
        /// 是否禁用
        /// </summary>
        [Comment("是否禁用")]
        [Required]
 
        public bool IsDisabled { get; set; }
 
 
 
 
 
 
 
 
 
    }
}