【文件业务类型】新增枚举类

pull/1/head
zengchenxi 9 months ago
parent dd48c5c66a
commit 25a71b8f22

@ -0,0 +1,20 @@
package com.chanko.yunxi.mes.module.heli.enums;
import lombok.Getter;
/**
*
* @author chenxi
* @date 2024-01-15 05:39
*/
@Getter
public enum BusinesTypeEnum {
SALE_ORDER("销售订单");
private String description;
BusinesTypeEnum(String description) {
this.description = description;
}
}
Loading…
Cancel
Save