using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.SJML.Entitys
{
///
/// 算法表
///
[ST("算法表")]
public class TN_ArithmeticEntitys : BaseModel
{
///
/// 仓库编码
///
public string S_WH_CODE { get; set; }
///
/// 仓库名称
///
public string S_WH_NAME { get; set; }
///
/// 库区编码
///
public string S_AREA_CODE { get; set; }
///
/// 库区名称
///
public string S_AREA_NAME { get; set; }
///
/// 策略编码
///
public string S_STRATEGY_CODE { get; set; }
///
/// 策略名称
///
public string S_STRATEGY_NAME { get; set; }
///
/// 策略类型
///
public string S_STRATEGY_TYPE { get; set; }
///
/// 条件
///
public string S_CONDITION { get; set; }
///
/// 备注
///
public string S_REMARK { get; set; }
///
/// 是否启用
///
public string S_START_USING { get; set; }
///
/// 优先级
///
public int I_PRIORITY { get; set; }
}
}