using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class Pole:Base,INameWeight { public override string TableName { get { return TableNames.杆; } } public long? ERP_ID { get; set; } public string Name { get; set; } public decimal? Weight { get; set; } public int? RowVersion { get; set; } } }