using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ERPWMS.Entity { public class PurchasePlanParameterEntity { //物料编码 public string cInvCode { get; set; } //最低供应量 public float? fMinSupply { get; set; } //供应倍数 public float? fSupplyMulti { get; set; } //固定提前期(天) public float? iInvAdvance { get; set; } //站点 public string WorkPoint { get; set; } } }