1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| /**
| * Copyright (c) 2020 ucsmy.com, All rights reserved.
| */
| package com.ruoyi.project.enumerate;
|
| import lombok.Getter;
|
| /**
| * @Description: 评价方法枚举
| * @Author: Administrator
| * @Created Date: 2020年05月10日
| * @LastModifyDate:
| * @LastModifyBy:
| * @Version:
| */
| @Getter
| public enum TrEvaluationMethodTypeEnum {
|
| LS(1, "ByLS"),
| LEC(2, "ByLEC"),
| MES(3, "ByMES"),
| RS(4, "ByRS"),
| ;
|
| private Integer methodId;
|
| private String url;
|
| TrEvaluationMethodTypeEnum(Integer methodId,String url) {
| this.url = url;
| this.methodId = methodId;
| }
|
| }
|
|