初始版本提交
This commit is contained in:
@@ -48,6 +48,7 @@ import org.springframework.stereotype.Service;
|
|||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
import org.springframework.util.CollectionUtils;
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
|
import javax.annotation.PostConstruct;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@@ -78,15 +79,22 @@ public class LargeScreenCountServiceImpl implements LargeScreenCountService {
|
|||||||
private final MsgEventInfoService msgEventInfoService;
|
private final MsgEventInfoService msgEventInfoService;
|
||||||
private final MessageEventFeedbackService messageEventFeedbackService;
|
private final MessageEventFeedbackService messageEventFeedbackService;
|
||||||
private final CommGeneralService commGeneralService;
|
private final CommGeneralService commGeneralService;
|
||||||
|
private final MsgEventConfigService msgEventConfigService;
|
||||||
private final PqsUsersetService pqsUsersetService;
|
private final PqsUsersetService pqsUsersetService;
|
||||||
private final PqsUserService pqsUserService;
|
private final PqsUserService pqsUserService;
|
||||||
private final PqLinedetailMapper pqLinedetailMapper;
|
private final PqLinedetailMapper pqLinedetailMapper;
|
||||||
@Value("${WAVETYPE.LIST}")
|
|
||||||
private List<Integer> WAVETYPE_LIST;
|
private List<String> WAVETYPE_LIST = new ArrayList<>();
|
||||||
@Value("${SYS_TYPE_ZT}")
|
@Value("${SYS_TYPE_ZT}")
|
||||||
private String sysTypeZt;
|
private String sysTypeZt;
|
||||||
|
|
||||||
|
@PostConstruct
|
||||||
|
public void init() {
|
||||||
|
MsgEventConfig one = msgEventConfigService.queryConfig();
|
||||||
|
this.WAVETYPE_LIST = one.getEventTypeList();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LedgerCountVO scaleStatistics(LargeScreenCountParam largeScreenCountParam) {
|
public LedgerCountVO scaleStatistics(LargeScreenCountParam largeScreenCountParam) {
|
||||||
LedgerCountVO ledgerCountVO = new LedgerCountVO();
|
LedgerCountVO ledgerCountVO = new LedgerCountVO();
|
||||||
|
|||||||
Reference in New Issue
Block a user