using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.StructuredDB.Replenishment { /// ///补货模型ROP /// [Comment("补货模型ROP周计划")] [Keyless] public class ReplenishmentROPWeekPlanDto { /// /// 物料编码 /// [StringLength(80)] [Comment("物料编码")] public string number { get; set; } /// /// 出库总金额 /// [Precision(20, 8)] [Comment("出库总金额")] public decimal outstock_amout { get; set; } /// /// 金额占比 /// [Precision(20, 8)] [Comment("金额占比")] public decimal amout_scale { get; set; } /// /// ABC /// [Precision(20, 8)] [Comment("ABC")] public string ABC { get; set; } } }