using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class Weigh_Detail : Base { public override string TableName { get { return TableNames.称重清单表; } } public long Local_Weigh_ID { get; set; } public decimal? Weight { get; set; } public DateTime? WeighTime { get; set; } } }