package com.ots.project.tool.report.MAQNEW.condition; import com.ots.common.enums.LangTypeEnum; import com.ots.project.exam.domain.TLibraryCode; import com.ots.project.tool.report.MAQNEW.base.BaseCondition_V2; import lombok.Getter; import lombok.Setter; import lombok.extern.slf4j.Slf4j; import java.util.Map; @Slf4j @Getter @Setter public class SimpleMessage_V2 extends BaseCondition_V2 { private String name; public SimpleMessage_V2(String codeId) { this.name = codeId; } @Override public TLibraryCode calculate(Map map, LangTypeEnum langType) { TLibraryCode library = getMaqReportLibrary(map, name, langType); return library; } @Override public Map getMAQwaterDropsImages() { return null; } }