using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class ProduceOutput_Detail : Base { public override string TableName { get { return TableNames.产出单明细; } } public long ProduceOutput_ID { get; set; } public long? Goods_ID { get; set; } public decimal? MainNumber { get; set; } } }