using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace wms.dto.response.hj
{
///
/// 策略基本信息
///
public class BaseStrategyDto
{
[Description("策略编号")]
public string Code { get; set; }
[Description("策略名称")]
public string Name { get; set; }
[Description("实现类")]
public string ImplClass { get; set; }
[Description("方向")]//0:入1:出
public int Direct { get; set; }
///
/// 存货编码
///
[Description("存货编码")]
public string MaterialCode { get; set; }
///
/// 区域编号
///
[Description("区域编号")]
public string ZoneCode { get; set; }
///
/// 区域名称
///
[Description("区域名称")]
public string ZoneName { get; set; }
///
/// 仓库编号
///
[Description("仓库编号")]
public string WarehouseCode { get; set; }
///
/// 仓库名称
///
[Description("仓库名称")]
public string WarehouseName { get; set; }
///
/// 方向
///
[Description("方向")]
public string DirectName { get; set; }
///
/// 关联id
///
[Description("关联id")]
public string RelationId { get; set; }
///
/// 参数
///
[Description("参数")]
public string Parameters { get; set; } = "";
///
/// 区域id
///
[Description("区域id")]
public long ZoneId { get; set; }
///
/// 停留时间
///
[Description("停留时间")]
public int StayMinutes { get; set; }
///
/// 同效力天数
///
[Description("同效力天数")]
public int SameEffectDays { get; set; }
///
/// 优先级
///
[Description("优先级")]
public int Priority { get; set; }
public List StrategyDetailList { get; set; }
//[Description("操作")]
//[Sort(100)]
//public string Operation { get; set; }
}
}