using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class Goods:Base { public override string TableName { get { return TableNames.存货; } } public long Goods_ID { get; set; } public bool AllowDisplay { get; set; } public int RowVersion { get; set; } } }