using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class ProductTeamOutDetail : Base { public override string TableName { get { return TableNames.生产班组产出明细; } } public long ProductTeam_ID { get; set; } public long Goods_ID { get; set; } public long DetailID { get; set; } } }