using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.SqlSugar.ZhongTian { [SugarTable("Base_UnitRate", "单位规则表")] public class BaseUnitrate { /// /// WarehouseId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long WarehouseId { get; set; } /// /// FromUnitId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long FromUnitId { get; set; } /// /// RateQty /// [SugarColumn(ColumnDataType = "numeric", Length = 18, IsNullable = false)] public decimal RateQty { get; set; } /// /// ToUnitId /// [SugarColumn(ColumnDataType = "nchar", Length = 10, IsNullable = false)] public string ToUnitId { get; set; } } }