You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
327 B

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