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
35
36
37
38
39
40
41
42
| package com.ruoyi.project.tr.criterionDetail.domain;
|
| import com.ruoyi.framework.web.domain.BaseEntity;
| import lombok.Data;
|
| /**
| * 传输层对象,用于计算分值
| *
| * @author wm
| * @date 2020-05-05
| */
| @Data
| public class CriterionDetailDTO extends BaseEntity
| {
| private static final long serialVersionUID = 1L;
|
| //评价方法
| private Integer evaluationMethodType;
|
| private Long LS_L;
|
| private Long LS_S;
|
| private Long LEC_L;
|
| private Long LEC_E;
|
| private Long LEC_C;
|
| private Long MES_M;
|
| private Long MES_E;
|
| private Long MES_S;
|
| private Long RS_R;
|
| private Long RS_S;
|
|
|
| }
|
|