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