package com.vincent.rsf.server.manager.enums;
|
|
/**
|
* @author Ryan
|
* @date 2025/7/14
|
* @description: 盘点单类型
|
* @version 1.0
|
*/
|
public enum CheckOrderType {
|
//盘点信息,1.临时盘点, 2.抽样盘点, 3. 区域盘点,4. 差异盘点 5. 循环盘点 6. 定期盘点
|
CHECK_ORDER_TYPE_TEMP("1", "临时盘点"),
|
CHECK_ORDER_TYPE_ROUND("2", "抽样盘点"),
|
CHECK_ORDER_TYPE_AREAS("3", "区域盘点"),
|
CHECK_ORDER_TYPE_DIFF("4", "差异盘点"),
|
CHECK_ORDER_TYPE_CIRCLE("5", "循环盘点"),
|
CHECK_ORDER_TYPE_TIMER("6", "定期盘点"),
|
;
|
|
CheckOrderType(String type, String desc) {
|
this.type = Integer.parseInt(type);
|
this.desc = desc;
|
}
|
|
public Integer type;
|
public String desc;
|
|
public static String getOrderType() {
|
return null;
|
}
|
|
}
|