using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.pt { [Tenant("pt")] [SugarTable("Base_UnitRate")] public partial class ptBaseUnitrate : BaseModel { /// /// 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; } } }