fix: @RequiredArgsConstructor -> @Autowired

This commit is contained in:
yjz
2024-08-15 17:49:32 +08:00
parent 76da1d1db0
commit 6bd669ee6a
12 changed files with 114 additions and 78 deletions
@@ -16,11 +16,11 @@ import com.jero.modules.activiti.process.common.service.ProcessSnapshotService;
import com.jero.modules.activiti.process.standardinterpret.vo.FlowApproveInfo; import com.jero.modules.activiti.process.standardinterpret.vo.FlowApproveInfo;
import com.jero.modules.activiti.service.ProcessAllService; import com.jero.modules.activiti.service.ProcessAllService;
import com.jero.modules.activiti.service.ProcessApprovalRecordService; import com.jero.modules.activiti.service.ProcessApprovalRecordService;
import lombok.RequiredArgsConstructor;
import org.activiti.engine.RuntimeService; import org.activiti.engine.RuntimeService;
import org.activiti.engine.runtime.ProcessInstance; import org.activiti.engine.runtime.ProcessInstance;
import org.apache.shiro.SecurityUtils; import org.apache.shiro.SecurityUtils;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -34,16 +34,19 @@ import java.util.stream.Collectors;
* @Date: 2024-06-24 16:08 * @Date: 2024-06-24 16:08
* @Version: 1.0 * @Version: 1.0
**/ **/
@RequiredArgsConstructor
@Transactional(rollbackFor = {Exception.class, JeroBootException.class}) @Transactional(rollbackFor = {Exception.class, JeroBootException.class})
@Component @Component
public class FlowUtility { public class FlowUtility {
@Autowired
private final ProcessAllService processAllService; private ProcessAllService processAllService;
private final ProcessApprovalRecordService processApprovalRecordService; @Autowired
private final ProcessDraftService processDraftService; private ProcessApprovalRecordService processApprovalRecordService;
private final RuntimeService runtimeService; @Autowired
private final ProcessSnapshotService processSnapshotService; private ProcessDraftService processDraftService;
@Autowired
private RuntimeService runtimeService;
@Autowired
private ProcessSnapshotService processSnapshotService;
public void flowApprovalUpdate(ProcessAll processAll, ProcessApprovalRecord processApprovalRecord){ public void flowApprovalUpdate(ProcessAll processAll, ProcessApprovalRecord processApprovalRecord){
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
@@ -2,7 +2,7 @@ package com.jero.modules.activiti.process.standardinterpret.controller;
import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseService; import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseService;
import lombok.RequiredArgsConstructor; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
@@ -12,9 +12,9 @@ import org.springframework.web.bind.annotation.RestController;
* @since 2024-06-24 14:46:05 * @since 2024-06-24 14:46:05
*/ */
@RestController("/processStandardInterpretClause") @RestController("/processStandardInterpretClause")
@RequiredArgsConstructor
public class ProcessStandardInterpretClauseController { public class ProcessStandardInterpretClauseController {
private final ProcessStandardInterpretClauseService processStandardInterpretClauseService; @Autowired
private ProcessStandardInterpretClauseService processStandardInterpretClauseService;
} }
@@ -2,7 +2,7 @@ package com.jero.modules.activiti.process.standardinterpret.controller;
import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseSublistService; import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseSublistService;
import lombok.RequiredArgsConstructor; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
@@ -12,10 +12,10 @@ import org.springframework.web.bind.annotation.RestController;
* @since 2024-06-24 14:47:59 * @since 2024-06-24 14:47:59
*/ */
@RestController("/processStandardInterpretClauseSublist") @RestController("/processStandardInterpretClauseSublist")
@RequiredArgsConstructor
public class ProcessStandardInterpretClauseSublistController { public class ProcessStandardInterpretClauseSublistController {
private final ProcessStandardInterpretClauseSublistService processStandardInterpretClauseSublistService; @Autowired
private ProcessStandardInterpretClauseSublistService processStandardInterpretClauseSublistService;
} }
@@ -2,7 +2,7 @@ package com.jero.modules.activiti.process.standardinterpret.controller;
import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretService; import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretService;
import lombok.RequiredArgsConstructor; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
@@ -11,11 +11,11 @@ import org.springframework.web.bind.annotation.RestController;
* @author makejava * @author makejava
* @since 2024-06-24 14:41:16 * @since 2024-06-24 14:41:16
*/ */
@RequiredArgsConstructor
@RestController("/processStandardInterpret") @RestController("/processStandardInterpret")
public class ProcessStandardInterpretController { public class ProcessStandardInterpretController {
private final ProcessStandardInterpretService processStandardInterpretService; @Autowired
private ProcessStandardInterpretService processStandardInterpretService;
} }
@@ -18,9 +18,9 @@ import com.jero.modules.activiti.process.standardinterpret.vo.StandardInterpretF
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.formula.functions.T; import org.apache.poi.ss.formula.functions.T;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.ModelAndView;
@@ -37,12 +37,12 @@ import java.util.List;
**/ **/
@Api(tags="标准解读流程") @Api(tags="标准解读流程")
@Slf4j @Slf4j
@RequiredArgsConstructor
@RestController @RestController
@RequestMapping("/process/standardInterpretFlow") @RequestMapping("/process/standardInterpretFlow")
public class StandardInterpretFlowController { public class StandardInterpretFlowController {
private final StandardInterpretFlowService standardInterpretFlowService; @Autowired
private StandardInterpretFlowService standardInterpretFlowService;
/** /**
* 标准解读流程-生成项目id * 标准解读流程-生成项目id
@@ -6,9 +6,9 @@ import com.jero.common.exception.JeroBootException;
import com.jero.modules.activiti.process.standardinterpret.entity.ProcessStandardInterpretClause; import com.jero.modules.activiti.process.standardinterpret.entity.ProcessStandardInterpretClause;
import com.jero.modules.activiti.process.standardinterpret.mapper.ProcessStandardInterpretClauseMapper; import com.jero.modules.activiti.process.standardinterpret.mapper.ProcessStandardInterpretClauseMapper;
import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseService; import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -22,13 +22,13 @@ import java.util.List;
*/ */
@Service @Service
@Slf4j @Slf4j
@RequiredArgsConstructor
@Transactional(rollbackFor = {Exception.class, JeroBootException.class}) @Transactional(rollbackFor = {Exception.class, JeroBootException.class})
public class ProcessStandardInterpretClauseServiceImpl public class ProcessStandardInterpretClauseServiceImpl
extends ServiceImpl<ProcessStandardInterpretClauseMapper, ProcessStandardInterpretClause> extends ServiceImpl<ProcessStandardInterpretClauseMapper, ProcessStandardInterpretClause>
implements ProcessStandardInterpretClauseService { implements ProcessStandardInterpretClauseService {
private final ProcessStandardInterpretClauseMapper processStandardInterpretClauseMapper; @Autowired
private ProcessStandardInterpretClauseMapper processStandardInterpretClauseMapper;
@Override @Override
public List<ProcessStandardInterpretClause> queryList( public List<ProcessStandardInterpretClause> queryList(
@@ -7,8 +7,8 @@ import com.jero.common.exception.JeroBootException;
import com.jero.modules.activiti.process.standardinterpret.entity.ProcessStandardInterpretClauseSublist; import com.jero.modules.activiti.process.standardinterpret.entity.ProcessStandardInterpretClauseSublist;
import com.jero.modules.activiti.process.standardinterpret.mapper.ProcessStandardInterpretClauseSublistMapper; import com.jero.modules.activiti.process.standardinterpret.mapper.ProcessStandardInterpretClauseSublistMapper;
import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseSublistService; import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretClauseSublistService;
import lombok.RequiredArgsConstructor;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -21,13 +21,13 @@ import java.util.List;
* @since 2024-06-24 14:48:00 * @since 2024-06-24 14:48:00
*/ */
@Service @Service
@RequiredArgsConstructor
@Transactional(rollbackFor = {Exception.class, JeroBootException.class}) @Transactional(rollbackFor = {Exception.class, JeroBootException.class})
public class ProcessStandardInterpretClauseSublistServiceImpl public class ProcessStandardInterpretClauseSublistServiceImpl
extends ServiceImpl<ProcessStandardInterpretClauseSublistMapper, ProcessStandardInterpretClauseSublist> extends ServiceImpl<ProcessStandardInterpretClauseSublistMapper, ProcessStandardInterpretClauseSublist>
implements ProcessStandardInterpretClauseSublistService { implements ProcessStandardInterpretClauseSublistService {
private final ProcessStandardInterpretClauseSublistMapper processStandardInterpretClauseSublistMapper; @Autowired
private ProcessStandardInterpretClauseSublistMapper processStandardInterpretClauseSublistMapper;
@Override @Override
public List<ProcessStandardInterpretClauseSublist> queryList( public List<ProcessStandardInterpretClauseSublist> queryList(
@@ -4,10 +4,10 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.jero.common.constant.CommonConstant; import com.jero.common.constant.CommonConstant;
import com.jero.common.exception.JeroBootException; import com.jero.common.exception.JeroBootException;
import com.jero.modules.activiti.process.standardinterpret.mapper.ProcessStandardInterpretMapper;
import com.jero.modules.activiti.process.standardinterpret.entity.ProcessStandardInterpret; import com.jero.modules.activiti.process.standardinterpret.entity.ProcessStandardInterpret;
import com.jero.modules.activiti.process.standardinterpret.mapper.ProcessStandardInterpretMapper;
import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretService; import com.jero.modules.activiti.process.standardinterpret.service.ProcessStandardInterpretService;
import lombok.RequiredArgsConstructor; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -18,13 +18,13 @@ import org.springframework.transaction.annotation.Transactional;
* @since 2024-06-24 14:41:19 * @since 2024-06-24 14:41:19
*/ */
@Service @Service
@RequiredArgsConstructor
@Transactional(rollbackFor = {Exception.class, JeroBootException.class}) @Transactional(rollbackFor = {Exception.class, JeroBootException.class})
public class ProcessStandardInterpretServiceImpl public class ProcessStandardInterpretServiceImpl
extends ServiceImpl<ProcessStandardInterpretMapper, ProcessStandardInterpret> extends ServiceImpl<ProcessStandardInterpretMapper, ProcessStandardInterpret>
implements ProcessStandardInterpretService { implements ProcessStandardInterpretService {
private final ProcessStandardInterpretMapper processStandardInterpretMapper; @Autowired
private ProcessStandardInterpretMapper processStandardInterpretMapper;
@Override @Override
public ProcessStandardInterpret queryOne(ProcessStandardInterpret processStandardInterpret) { public ProcessStandardInterpret queryOne(ProcessStandardInterpret processStandardInterpret) {
@@ -68,7 +68,6 @@ import com.jero.modules.system.service.ISysDepartService;
import com.jero.modules.system.service.ISysDictService; import com.jero.modules.system.service.ISysDictService;
import com.jero.modules.tag.entity.LawsTag; import com.jero.modules.tag.entity.LawsTag;
import com.jero.modules.tag.service.ILawsTagService; import com.jero.modules.tag.service.ILawsTagService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.activiti.engine.ManagementService; import org.activiti.engine.ManagementService;
import org.activiti.engine.RuntimeService; import org.activiti.engine.RuntimeService;
@@ -86,12 +85,12 @@ import org.jeecgframework.poi.excel.entity.ImportParams;
import org.jeecgframework.poi.excel.entity.enmus.ExcelType; import org.jeecgframework.poi.excel.entity.enmus.ExcelType;
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest; import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.View;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
@@ -112,42 +111,65 @@ import java.util.stream.Collectors;
**/ **/
@Service @Service
@Slf4j @Slf4j
@RequiredArgsConstructor
@Transactional(rollbackFor = {Exception.class,JeroBootException.class}) @Transactional(rollbackFor = {Exception.class,JeroBootException.class})
public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowService { public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowService {
private final FlowUtility flowUtility; @Autowired
private final RuntimeService runtimeService; private FlowUtility flowUtility;
private final TaskService taskService; @Autowired
private final ProcessAllService processAllService; private RuntimeService runtimeService;
private final ProcessApprovalRecordService processApprovalRecordService; @Autowired
private final ProcessNodeLinkService processNodeLinkService; private TaskService taskService;
private final ProcessStandardInterpretService processStandardInterpretService; @Autowired
private final ProcessStandardInterpretClauseService processStandardInterpretClauseService; private ProcessAllService processAllService;
private final ProcessStandardInterpretClauseSublistService processStandardInterpretClauseSublistService; @Autowired
private final ILawsDomesticStandardService lawsDomesticStandardService; private ProcessApprovalRecordService processApprovalRecordService;
private final IProcessHandleService processHandleService; @Autowired
private final ISarFileSplitInfoService sarFileSplitInfoService; private ProcessNodeLinkService processNodeLinkService;
private final DocumentSplitMapper documentSplitMapper; @Autowired
private final ISysDictService sysDictService; private ProcessStandardInterpretService processStandardInterpretService;
private final ISysDepartService sysDepartService; @Autowired
private final ILawsPartNameService lawsPartNameService; private ProcessStandardInterpretClauseService processStandardInterpretClauseService;
private final ILawsEnterpriseStandardService lawsEnterpriseStandardService; @Autowired
private final LawsDocumentSplitMapper lawsDocumentSplitMapper; private ProcessStandardInterpretClauseSublistService processStandardInterpretClauseSublistService;
private final SarFileSplitItemsValEOMapper sarFileSplitItemsValEOMapper; @Autowired
private final IDocumentSplitService documentSplitService; private ILawsDomesticStandardService lawsDomesticStandardService;
private final ManagementService managementService; @Autowired
private final ILawsStandardMasterPlanService lawsStandardMasterPlanService; private IProcessHandleService processHandleService;
private final ProcessStandardInterpretMapper processStandardInterpretMapper; @Autowired
private final SendMessageAPI sendMessageAPI; private ISarFileSplitInfoService sarFileSplitInfoService;
private final ILawsTagService lawsTagService; @Autowired
private DocumentSplitMapper documentSplitMapper;
@Autowired
private ISysDictService sysDictService;
@Autowired
private ISysDepartService sysDepartService;
@Autowired
private ILawsPartNameService lawsPartNameService;
@Autowired
private ILawsEnterpriseStandardService lawsEnterpriseStandardService;
@Autowired
private LawsDocumentSplitMapper lawsDocumentSplitMapper;
@Autowired
private SarFileSplitItemsValEOMapper sarFileSplitItemsValEOMapper;
@Autowired
private IDocumentSplitService documentSplitService;
@Autowired
private ManagementService managementService;
@Autowired
private ILawsStandardMasterPlanService lawsStandardMasterPlanService;
@Autowired
private ProcessStandardInterpretMapper processStandardInterpretMapper;
@Autowired
private SendMessageAPI sendMessageAPI;
@Autowired
private ILawsTagService lawsTagService;
private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
private final List<String> tempList = new ArrayList<>(); private final List<String> tempList = new ArrayList<>();
private final int TEXT_LENGTH = 50; private final int TEXT_LENGTH = 50;
private final int TEXT_DICT_LENGTH = 500; private final int TEXT_DICT_LENGTH = 500;
private final int TEXT_AREA_LENGTH = 2000; private final int TEXT_AREA_LENGTH = 2000;
private final View error;
@Override @Override
public void flowStart(StandardInterpretFlowDTO standardInterpretFlowDTO) { public void flowStart(StandardInterpretFlowDTO standardInterpretFlowDTO) {
@@ -15,10 +15,10 @@ import com.jero.modules.laws.standardmasterplan.vo.LawsStandardMasterPlanVO;
import com.jero.modules.system.vo.IdMapBody; import com.jero.modules.system.vo.IdMapBody;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.formula.functions.T; import org.apache.poi.ss.formula.functions.T;
import org.apache.shiro.authz.annotation.RequiresPermissions; import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.ModelAndView;
@@ -37,10 +37,10 @@ import java.util.List;
@RestController @RestController
@RequestMapping("/laws/StandardMasterPlan") @RequestMapping("/laws/StandardMasterPlan")
@Slf4j @Slf4j
@RequiredArgsConstructor
public class LawsStandardMasterPlanController { public class LawsStandardMasterPlanController {
private final ILawsStandardMasterPlanService lawsStandardMasterPlanService; @Autowired
private ILawsStandardMasterPlanService lawsStandardMasterPlanService;
/** /**
* 标准主计划-分页列表查询 * 标准主计划-分页列表查询
@@ -18,7 +18,6 @@ import org.springframework.web.bind.annotation.RestController;
@RestController @RestController
@RequestMapping("/laws/StandardMasterPlanSublist") @RequestMapping("/laws/StandardMasterPlanSublist")
@Slf4j @Slf4j
@RequiredArgsConstructor
public class LawsStandardMasterPlanSublistController { public class LawsStandardMasterPlanSublistController {
} }
@@ -43,13 +43,13 @@ import com.jero.modules.oss.service.IOSSFileService;
import com.jero.modules.system.entity.SysUser; import com.jero.modules.system.entity.SysUser;
import com.jero.modules.system.service.ISysDictService; import com.jero.modules.system.service.ISysDictService;
import com.jero.modules.system.service.ISysUserService; import com.jero.modules.system.service.ISysUserService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.jeecgframework.poi.excel.entity.TemplateExportParams; import org.jeecgframework.poi.excel.entity.TemplateExportParams;
import org.jeecgframework.poi.excel.view.JeecgTemplateExcelView; import org.jeecgframework.poi.excel.view.JeecgTemplateExcelView;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -71,24 +71,36 @@ import java.util.stream.Collectors;
@Service @Service
@Transactional(rollbackFor = JeroBootException.class) @Transactional(rollbackFor = JeroBootException.class)
@Slf4j @Slf4j
@RequiredArgsConstructor
public class LawsStandardMasterPlanServiceImpl public class LawsStandardMasterPlanServiceImpl
extends ServiceImpl<LawsStandardMasterPlanMapper, LawsStandardMasterPlan> extends ServiceImpl<LawsStandardMasterPlanMapper, LawsStandardMasterPlan>
implements ILawsStandardMasterPlanService { implements ILawsStandardMasterPlanService {
private final LawsStandardMasterPlanMapper lawsStandardMasterPlanMapper; @Autowired
private final ILawsStandardMasterPlanSublistService lawsStandardMasterPlanSublistService; private LawsStandardMasterPlanMapper lawsStandardMasterPlanMapper;
private final ILawsDomesticStandardService lawsDomesticStandardService; @Autowired
private final ISysDictService sysDictService; private ILawsStandardMasterPlanSublistService lawsStandardMasterPlanSublistService;
private final ISysUserService sysUserService; @Autowired
private final IOSSFileService ossFileService; private ILawsDomesticStandardService lawsDomesticStandardService;
private final ILawsMarketStandardService lawsMarketStandardService; @Autowired
private final ILawsMarketStandardDetailService lawsMarketStandardDetailService; private ISysDictService sysDictService;
private final ILawsConformityAssessmentLibraryService lawsConformityAssessmentLibraryService; @Autowired
private final ILawsEvaluationNotMetLibraryService lawsEvaluationNotMetLibraryService; private ISysUserService sysUserService;
private final ProcessAllService processAllService; @Autowired
private final ProcessStandardInterpretService processStandardInterpretService; private IOSSFileService ossFileService;
private final IProcessNewStandardImportService processNewStandardImportService; @Autowired
private ILawsMarketStandardService lawsMarketStandardService;
@Autowired
private ILawsMarketStandardDetailService lawsMarketStandardDetailService;
@Autowired
private ILawsConformityAssessmentLibraryService lawsConformityAssessmentLibraryService;
@Autowired
private ILawsEvaluationNotMetLibraryService lawsEvaluationNotMetLibraryService;
@Autowired
private ProcessAllService processAllService;
@Autowired
private ProcessStandardInterpretService processStandardInterpretService;
@Autowired
private IProcessNewStandardImportService processNewStandardImportService;
@Value("${jero.path.exportExcelTempPath}") @Value("${jero.path.exportExcelTempPath}")
private String exportExcelTempPath; private String exportExcelTempPath;