using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Utils.Attributes; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class ProductCatalog_Detail : Base { public override string TableName { get { return TableNames.客户端产品分类明细; } } public long ProductCatalog_ID { get; set; } public long CatalogDetail_ID { get; set; } public string Goods_Name { get; set; } public long Goods_ID { get; set; } } }