using System.Collections.Generic; namespace OS.Spin.Modle.BusinessLayer { public class MGreyCloth { /// /// 布匹编号 /// public string SnNo { get; set; } public double Meter { get; set; } public int Score { get; set; } public string Level { get; set; } public List Flaws { get; set; } } }