using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Basic { public class TN_WM_B_STRATEGYEntity { /// /// CN_GUID /// public string CN_GUID { get; set; } /// /// 策略名称 /// public string CN_S_NAME { get; set; } /// /// 策略类型 /// public string CN_S_TYPE { get; set; } /// /// 是否使用 /// public string CN_C_IS_USE { get; set; } /// /// 条件 /// public string CN_S_WHERE { get; set; } /// /// 备注 /// public string CN_S_NOTE { get; set; } /// /// 子表JSON /// public object STRATEGY_USE { get; set; } } /// /// 算法方法使用,为提高效率,只返回算法必须的字段 /// public class STRATEGYALGOREntity { /// /// 策略名称 /// public string CN_S_NAME { get; set; } /// /// 策略代码 /// public string CN_S_CODE { get; set; } /// /// 策略优先级 /// public int CN_N_PRIORITY { get; set; } } }