MGreyCloth.cs
409 Bytes
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; }
}
}