using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class UnfinishedBatch : Base { public override string TableName { get { return TableNames.未完成生产批次; } } public string ProductBatch { get; set; } public LegType LegType { get; set; } public int State { get; set; } } }