using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiger.Model.Entitys.MES { public class WeighEntity { /// /// 重量 /// public double Weight { get; set; } /// /// 单位 /// public string Unit { get; set; } } }