[测评系统]--测评系统核心代码库
吴祝攀
2024-06-26 10b6c791f1a137ac97cce6844482649fc859309b
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
package com.ots.project.tool.report.MAQ.condition;
import com.ots.common.enums.LangTypeEnum;
import com.ots.project.exam.domain.TLibraryCode;
import com.ots.project.tool.report.MAQ.base.BaseCondition;
import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import java.util.Map;
@Slf4j
@Getter
@Setter
public class SimpleMessage extends BaseCondition {
    private String name;
    public SimpleMessage(String codeId) {
        this.name = codeId;
    }
    @Override
    public TLibraryCode calculate(Map<String, String> map, LangTypeEnum langType) {
        TLibraryCode library = getMaqReportLibrary(map, name, langType);
        return library;
    }
    @Override
    public Map<String, String> getMAQwaterDropsImages() {
        return null;
    }
}