10 changed files with 64 additions and 11 deletions
@ -0,0 +1,20 @@ |
|||
package com.epmet.service.indexcal; |
|||
|
|||
import com.epmet.dto.indexcal.CalculateCommonFormDTO; |
|||
|
|||
/** |
|||
* 区直部门指标计算 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/9/2 14:57 |
|||
*/ |
|||
public interface DeptCorreLationService { |
|||
/** |
|||
* @return java.lang.Boolean |
|||
* @param formDTO |
|||
* @author yinzuomei |
|||
* @description 区直部门,分值计算 |
|||
* @Date 2020/8/26 10:51 |
|||
**/ |
|||
Boolean calculateDeptCorreLation(CalculateCommonFormDTO formDTO); |
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.epmet.service.indexcal.impl; |
|||
|
|||
import com.epmet.dao.indexcoll.FactIndexGovrnAblityDeptMonthlyDao; |
|||
import com.epmet.dto.indexcal.CalculateCommonFormDTO; |
|||
import com.epmet.service.indexcal.DeptCorreLationService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* 区直部门指标计算 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/9/2 14:58 |
|||
*/ |
|||
@Slf4j |
|||
@Service |
|||
public class DeptCorreLationServiceImpl implements DeptCorreLationService { |
|||
@Autowired |
|||
private FactIndexGovrnAblityDeptMonthlyDao factIndexGovrnAblityDeptMonthlyDao; |
|||
|
|||
/** |
|||
* @param formDTO |
|||
* @return java.lang.Boolean |
|||
* @author yinzuomei |
|||
* @description 区直部门,分值计算 |
|||
* @Date 2020/8/26 10:51 |
|||
**/ |
|||
@Override |
|||
public Boolean calculateDeptCorreLation(CalculateCommonFormDTO formDTO) { |
|||
return null; |
|||
} |
|||
} |
Loading…
Reference in new issue