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.
32 lines
724 B
32 lines
724 B
1 year ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
public enum StoreArea
|
||
|
{
|
||
|
[Description("原料库")]
|
||
|
RAW=11,
|
||
|
[Description("线边库")]
|
||
|
WIP=21,
|
||
|
[Description("成品库")]
|
||
|
FG=12,
|
||
|
[Description("销售库")]
|
||
|
SALE=13,
|
||
|
[Description("隔离库")]
|
||
|
HOLD=22,
|
||
|
[Description("在途库")]
|
||
|
ROAD=14,
|
||
|
[Description("其它库")]
|
||
|
OTHER=15,
|
||
|
[Description("废品库")]
|
||
|
SCRAP=23,
|
||
|
[Description("半成品库")]
|
||
|
HF=16,
|
||
|
[Description("待检库")]
|
||
|
INSPECT=0,
|
||
|
[Description("委外库")]
|
||
|
OS = 17,
|
||
|
[Description("备品库")]
|
||
|
AST
|
||
|
}
|
||
|
}
|