using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class ProductBatch : Base { public override string TableName { get { return TableNames.生产计划生产批次; } } public long Batch_ID { get; set; } public string Batch { get; set; } public int RowVersion { get; set; } public DateTime BillDate { get; set; } public long ProductPlan_ID { get; set; } } }