using System; using System.Data; using Forks.EnterpriseServices; using Forks.EnterpriseServices.DomainObjects2; namespace BLUtil { [MapToTable("Weight")] public class WeightTable { public long ID { get; set; } public long Goods_ID { get; set; } public string Goods_Name { get; set; } public string Goods_Code { get; set; } public string Unit { get; set; } public decimal? Weight { get; set; } [LogicName("ÈÕÆÚ")] [DbColumn(DbType = SqlDbType.DateTime)] public DateTime DateTime { get; set; } [LogicName("˳ÐòºÅ")] public long Sequence { get; set; } } }