using System; using System.Collections.Generic; using System.Linq; using System.Text; using WeighBusiness.Utils; namespace WeighBusiness.BO { public class GoodsWeightFloat_Detail : Base { public override string TableName { get { return TableNames.存货称重浮动配置明细; } } public long GoodsWeightFloat_ID { get; set; } public long Goods_ID { get; set; } public long DetailID { get; set; } public decimal? StandardWeight { get; set; } public decimal? UpWeight { get; set; } } }