using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.Models.Statistics { public class PercentOfPass { //物料类型 public string Category { get; set; } //关键件 public bool KeyFlag { get; set; } //质检结果 public string CheckResult { get; set; } //数量 public int Qty { get; set; } } }