Commit e8238e12 authored by suhuiguang's avatar suhuiguang

1.资质类型枚举

parent c01ddde4
package com.yeejoin.amos.boot.module.tcm.api.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author Administrator
*/
@AllArgsConstructor
@Getter
public enum LicenceTypeEnum {
/**
* 资质类型
*/
JYJC("检验检测", "jyjc"),
OTHER("其他", "other");
private String name;
private String code;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment