schangxiang@126.com
2025-09-17 ff43ddf18764629ff875478e4e47a7281cbd230a
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
using Admin.NET.Core;
 
/*
 * @author : 您的名字
 * @date : 2024/7/30下午7:09:34
 * @desc : 下架策略选项
 */
namespace Admin.NET.Application.Entity
{
    /// <summary>
    /// 下架策略选项
    /// </summary>
    [SugarTable("wms_config_unshelve_strategy_choose", "下架策略选项")]
    public class WmsConfigUnshelveStrategyChoose : EntityBase
    {
 
 
        /// <summary>
        /// 策略代码
        /// </summary>
        [Required]
        [SugarColumn(ColumnName = "StrategyCode", ColumnDescription = "策略代码", Length = 50)]
 
        public string StrategyCode { get; set; }
 
 
        /// <summary>
        /// 策略选项
        /// </summary>
        [Required]
 
        [SugarColumn(ColumnName = "StrategyOption", ColumnDescription = "策略选项")]
        public StrategyOptionEnum StrategyOption { get; set; }
 
 
        /// <summary>
        /// 优先级
        /// </summary>
        [Required]
 
        [SugarColumn(ColumnName = "Priority", ColumnDescription = "优先级")]
        public int Priority { get; set; }
 
 
 
 
 
 
 
 
 
    }
}