1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cn.iocoder.yudao.module.srm.enums;
|
| import lombok.Getter;
|
| /**
| * 招标类型枚举
| */
| @Getter
| public enum TenderTypeEnum {
|
| PUBLIC(1, "公开招标"),
| INVITATION(2, "邀请招标"),
| COMPETITIVE_NEGOTIATION(3, "竞争性谈判");
|
| TenderTypeEnum(Integer code, String name) {
| this.code = code;
| this.name = name;
| }
|
| private final Integer code;
| private final String name;
|
| }
|
|