[测评系统]--测评系统核心代码库
linzhijie
2021-07-28 3d285bc2a61024e6e4fb805c13286243430e38e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ots.project.tool.report.JAQ.condition;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
public class Table4 {
    
    private String competency;
    
    private List<String> listOfTopicNumbers;
    
    private String examplesOfHighPerformancePerformers;
    public String[] toRow() {
        StringBuffer stringBuffer = new StringBuffer();
        listOfTopicNumbers.stream().forEach(s -> {
            stringBuffer.append(s);
            stringBuffer.append("\n");
        });
        return new String[]{competency, stringBuffer.toString()};
    }
}