namespace Win_in.Sfs.Basedata.Domain; public class AQL : SfsBaseDataAggregateRootBase { /// /// 代码 /// public string ItemCode { get; set; } /// /// 供应商 /// public string SupplierCode { get; set; } /// /// ABC类,默认为C /// public string AbcClass { get; set; } /// /// 数量下限 /// public decimal FloorQty { get; set; } /// /// 数量上限 /// public decimal CeilingQty { get; set; } /// /// 抽检百分比 /// public decimal SamplePercent { get; set; } /// /// 抽检数量 /// public decimal SampleQty { get; set; } /// /// 使用百分比 /// public bool IsUsePercent { get; set; } }