16 lines
327 B

using System.ComponentModel;
namespace ChangKeTec.Wms.Models.Enums
{
public enum CellType
{
[Description("生产位置")]
RAW = 1,
[Description("完工位置")]
FG = 2,
[Description("销售位置")]
SALE = 3,
[Description("委外位置")]
OS = 4,
}
}