Commit 3a3991f9 by lizefeng

jit 动态备货新增30日日均

parent d9a67b84
......@@ -29,6 +29,10 @@ namespace AutoTurnOver.Models
public decimal quantity_sales14 { get; set; }
public decimal is_gt_30 { get; set; }
public decimal quantity_sales30 { get; set; }
/// <summary>
/// 安全库存天数
/// </summary>
......@@ -55,6 +59,7 @@ namespace AutoTurnOver.Models
/// 7 日销量的算法是否启用
/// </summary>
public int enable_7 { get; set; }
public int enable_30 { get; set; }
}
public class dc_auto_jit_tag_dto : dc_auto_jit_tag
......@@ -62,6 +67,7 @@ namespace AutoTurnOver.Models
public string group_name { get; set; }
public string is_gt_7_str { get { return ((dc_auto_jit_tag_gt_type)is_gt_7).ToString(); } }
public string is_gt_14_str { get { return ((dc_auto_jit_tag_gt_type)is_gt_14).ToString(); } }
public string is_gt_30_str { get { return ((dc_auto_jit_tag_gt_type)is_gt_30).ToString(); } }
}
public enum dc_auto_jit_tag_gt_type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment