| | |
| | | using System.Linq; |
| | | using System.ComponentModel; |
| | | using System.Collections.Generic; |
| | | using Tiger.Model.Extensions; |
| | | |
| | | namespace Tiger.Model |
| | | { |
| | |
| | | /// <summary> |
| | | /// 货架层数 |
| | | /// </summary> |
| | | public decimal FLOORS { get; set; } |
| | | public double FLOORS { get; set; } |
| | | /// <summary> |
| | | /// 每层储位数 |
| | | /// </summary> |
| | | public decimal FLOOR_COUNT { get; set; } |
| | | public double FLOOR_COUNT { get; set; } |
| | | /// <summary> |
| | | /// 储位ID方向(ASC/DESC) |
| | | /// </summary> |
| | |
| | | /// 备注 |
| | | /// </summary> |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | #endregion |
| | | |
| | | #region 虚拟属性 |
| | | /*例子 |
| | | #region 虚拟属性 |
| | | /*例子 |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string FieldName { get; set; } |
| | | */ |
| | | [SugarColumn(IsIgnore = true)] |
| | | public bool IsLightShelf => SHELF_TYPE == WMS_SHELF.SHELF_TYPEs.Smart.GetValue() || SHELF_TYPE == WMS_SHELF.SHELF_TYPEs.QRCode.GetValue(); |
| | | #endregion |
| | | |
| | | #region 枚举变量 |