|
|
@ -24,12 +24,14 @@ import com.epmet.commons.tools.utils.DateUtils; |
|
|
|
import com.epmet.constant.DataSourceConstant; |
|
|
|
import com.epmet.constant.OrgSourceTypeConstant; |
|
|
|
import com.epmet.dao.evaluationindex.screen.ScreenCustomerGridDao; |
|
|
|
import com.epmet.dto.extract.form.GovernAbilityGridMonthlyFormDTO; |
|
|
|
import com.epmet.dto.extract.form.PartyAbilityGridMonthlyFormDTO; |
|
|
|
import com.epmet.dto.extract.form.PartyBaseInfoFormDTO; |
|
|
|
import com.epmet.dto.extract.result.GridInfoResultDTO; |
|
|
|
import com.epmet.entity.evaluationindex.screen.ScreenCustomerGridEntity; |
|
|
|
import com.epmet.entity.org.CustomerGridEntity; |
|
|
|
import com.epmet.service.evaluationindex.screen.ScreenCustomerGridService; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
@ -131,4 +133,15 @@ public class ScreenCustomerGridServiceImpl extends BaseServiceImpl<ScreenCustome |
|
|
|
public List<PartyAbilityGridMonthlyFormDTO> selectAllGridInfoToParty(String customerId) { |
|
|
|
return screenCustomerGridDao.selectAllGridInfoToParty(customerId); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询全部网格信息 |
|
|
|
* @param customerId |
|
|
|
* @author zxc |
|
|
|
* @date 2020/9/18 10:47 上午 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public List<GovernAbilityGridMonthlyFormDTO> selectAllGridInfo(String customerId) { |
|
|
|
return screenCustomerGridDao.selectAllGridInfo(customerId); |
|
|
|
} |
|
|
|
} |