| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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
- {
- /// <summary>
- ///补货模型ROP
- /// </summary>
- [Comment("补货模型ROP周计划")]
- [Keyless]
- public class ReplenishmentROPWeekPlanDto
- {
- /// <summary>
- /// 物料编码
- /// </summary>
- [StringLength(80)]
- [Comment("物料编码")]
- public string number { get; set; }
- /// <summary>
- /// 出库总金额
- /// </summary>
- [Precision(20, 8)]
- [Comment("出库总金额")]
- public decimal outstock_amout { get; set; }
- /// <summary>
- /// 金额占比
- /// </summary>
- [Precision(20, 8)]
- [Comment("金额占比")]
- public decimal amout_scale { get; set; }
- /// <summary>
- /// ABC
- /// </summary>
- [Precision(20, 8)]
- [Comment("ABC")]
- public string ABC { get; set; }
- }
- }
|