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
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 刘文奇
 * @date : 2024/4/23下午5:02:12
 * @desc : 批次属性规则
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 批次属性规则
    /// </summary>
    [Table("wms_batch_rule")]
    [Comment("批次属性规则")]
    public class WmsBatchRule : DEntityBase
    {
 
 
        /// <summary>
        /// 规则编号
        /// </summary>
        [Comment("规则编号")]
        [Required]
        [MaxLength(255)]
        public string RuleCode { get; set; }
 
 
        /// <summary>
        /// 规则名称
        /// </summary>
        [Comment("规则名称")]
        [Required]
        [MaxLength(255)]
        public string RuleName { get; set; }
 
 
        /// <summary>
        /// 规则描述
        /// </summary>
        [Comment("规则描述")]
        [MaxLength(255)]
        public string RuleDesc { get; set; }
 
 
        /// <summary>
        /// 是否禁用
        /// </summary>
        [Comment("是否禁用")]
        [Required]
 
        public bool IsDisabled { get; set; }
 
 
 
 
 
 
 
 
 
    }
}