Logo white

Tuo Wenbo / WeiQ_Mianfang

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • WeiQ_Mianfang
  • OS.Spin
  • OS.Spin.Modle
  • BusinessLayer
  • MGreyCloth.cs
  • 20211021 ...
    8ca6e89d
    最新版本
    Tuo Wenbo authored
    2021-10-21 14:41:50 +0800  
    Browse Code »
MGreyCloth.cs 409 Bytes
Edit Raw Blame History Permalink
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; }
    }
}