liuying
2024-04-23 82f7b3c19adfac9f2ccde3e09097d1c0b2cfd7ed
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
using Admin.NET.Core.Util.LowCode.Dto;
using System;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 控制属性规则输出参数
    /// </summary>
    public class WmsControlRuleOutput
    {
        /// <summary>
        /// 规则编号
        /// </summary>
        public string RuleCode { get; set; }
        
        /// <summary>
        /// 规则名称
        /// </summary>
        public string RuleName { get; set; }
        
        /// <summary>
        /// 规则描述
        /// </summary>
        public string RuleDesc { get; set; }
        
        /// <summary>
        /// 是否禁用
        /// </summary>
        public bool IsDisabled { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long? Id { get; set; }
        
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTimeOffset? CreatedTime { get; set; }
        
        /// <summary>
        /// 更新时间
        /// </summary>
        public DateTimeOffset? UpdatedTime { get; set; }
        
        /// <summary>
        /// 创建者名称
        /// </summary>
        public string CreatedUserName { get; set; }
        
        /// <summary>
        /// 修改者名称
        /// </summary>
        public string UpdatedUserName { get; set; }
        
    }
}