using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Utils.Attributes;
|
|
using WeighBusiness.Utils;
|
|
|
|
namespace WeighBusiness.BO
|
|
{
|
|
public class ProductCatalog : Base
|
|
{
|
|
public override string TableName
|
|
{
|
|
get { return TableNames.客户端产品分类; }
|
|
}
|
|
|
|
public long ProductCatalog_ID { get; set; }
|
|
public string Name { get; set; }
|
|
public int RowVersion { get; set; }
|
|
|
|
}
|
|
}
|