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; }
|
|
}
|