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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Admin.NET.Application;
 
 
/// <summary>
///下架策略范围详情视图(范围+下架策略主信息) 
/// </summary>
[MySugarTableView("v_wms_order_movement_details_for_dispense", "下架策略范围详情视图(范围+下架策略主信息) ")]
public class v_wms_config_unshelve_strategy_range
{
    /// <summary>
    /// 策略代码
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "StrategyCode", ColumnDescription = "策略代码", Length = 50)]
 
    public string StrategyCode { get; set; }
 
 
    /// <summary>
    /// 策略名称
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "StrategyName", ColumnDescription = "策略名称", Length = 255)]
 
    public string StrategyName { get; set; }
 
 
    /// <summary>
    /// 策略生效时间
    /// </summary>
 
    [SugarColumn(ColumnName = "StartTime", ColumnDescription = "策略生效时间")]
    public DateTime? StartTime { get; set; }
 
 
    /// <summary>
    /// 策略失效时间
    /// </summary>
 
    [SugarColumn(ColumnName = "EndTime", ColumnDescription = "策略失效时间")]
    public DateTime? EndTime { get; set; }
 
 
 
 
    /// <summary>
    /// 物料编号
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
 
    public string MaterialCode { get; set; }
 
 
    /// <summary>
    /// 物料名称
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
 
    public string MaterialName { get; set; }
 
 
    /// <summary>
    /// 单位
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "MaterialUnit", ColumnDescription = "单位", Length = 50)]
 
    public string MaterialUnit { get; set; }
 
}