出库单据增加货架类型

This commit is contained in:
hehaibing-1996
2024-05-15 18:39:07 +08:00
parent 65bb836721
commit cc65e985aa
2 changed files with 14 additions and 1 deletions

View File

@ -52,6 +52,13 @@ namespace WCS.BLL.DbModels
[SugarColumn(ColumnName = "sync_type",IsNullable = false, ColumnDescription = "单据同步类型ByMatCode,ByMatSn")]
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,
ByMatSn = 1
}
public enum ShelfTypeEnum
{
SmartShelf = 0,
SingleLightShelf = 1
}
}