mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 13:22:07 +08:00
1、标签设计接口入参检查完善;2、部分校验器类包名和类名规范;
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
package com.cf.imes.module.system.enums.label;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 标签模板类型枚举
|
||||
*
|
||||
* @author Gqr
|
||||
* @since 2024/10/15 10:46
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum LabelTemplateType {
|
||||
/**
|
||||
* 板材包裹
|
||||
*/
|
||||
PLATEPACKAGELABEL("platePackageLabel"),
|
||||
|
||||
/**
|
||||
* 机台标签
|
||||
*/
|
||||
MACHINELABEL("machineLabel"),
|
||||
|
||||
/**
|
||||
* 配件包裹标签
|
||||
*/
|
||||
PARTSPACKAGELABEL("partsPackageLabel"),
|
||||
|
||||
/**
|
||||
* 订单包裹标签
|
||||
*/
|
||||
ORDERPACKAGELABEL("orderPackageLabel");
|
||||
|
||||
private String type;
|
||||
}
|
||||
Reference in New Issue
Block a user