This commit is contained in:
陶坤
2024-05-15 18:50:44 +08:00
2 changed files with 14 additions and 1 deletions

View File

@ -50,7 +50,14 @@ namespace WCS.BLL.DbModels
/// 单据同步类型 /// 单据同步类型
/// </summary> /// </summary>
[SugarColumn(ColumnName = "sync_type",IsNullable = false, ColumnDescription = "单据同步类型ByMatCode,ByMatSn")] [SugarColumn(ColumnName = "sync_type",IsNullable = false, ColumnDescription = "单据同步类型ByMatCode,ByMatSn")]
public SyncTypeEnum SyncType { get; set; } public SyncTypeEnum SyncType { get; set; }
/// <summary>
/// 单据货架类型 单灯单据还是货架单据
/// </summary>
[SugarColumn(ColumnName = "shelf_type", IsNullable = false, ColumnDescription = "货架类型 是信息化货架还是智能货架")]
public ShelfTypeEnum ShelfType { get; set; }
/// <summary> /// <summary>
/// 创建时间 /// 创建时间

View File

@ -62,4 +62,10 @@ namespace WCS.Model.ApiModel.OutStore
ByMatCode = 0, ByMatCode = 0,
ByMatSn = 1 ByMatSn = 1
} }
public enum ShelfTypeEnum
{
SmartShelf = 0,
SingleLightShelf = 1
}
} }