1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
using System.Collections.Generic; namespace OS.Spin.Modle.BusinessLayer { public class MGreyCloth { /// <summary> /// 布匹编号 /// </summary> public string SnNo { get; set; } public double Meter { get; set; } public int Score { get; set; } public string Level { get; set; } public List<MFlawInfo> Flaws { get; set; } } }