package com.vincent.rsf.server.api.entity.enums; /** * @author Ryan * @version 1.0 * @title TaskType * @description * @create 2025/3/29 17:02 */ public enum TaskType { TASK_TYPE_IN(1, "入库"), TASK_TYPE_EMPITY_IN(10, "空板入库"), TASK_TYPE_LOC_MOVE(11, "库格移载"), TASK_TYPE_PICK_IN(53, "拣料再入库"), TASK_TYPE_MERGE_IN(54, "并板再入库"), TASK_TYPE_CHECK_IN(57, "盘点再入库"), TASK_TYPE_OUT(101, "出库"), TASK_TYPE_PICK_AGAIN_IN(103, "拣料入库"), TASK_TYPE_MERGE_OUT(104, "并板出库"), TASK_TYPE_CHECK_OUT(107, "盘点出库"), TASK_TYPE_EMPITY_OUT(110, "空板出库"), ; public Integer type; public String desc; TaskType(Integer type, String desc) { this.type = type; this.desc = desc; } }