8 changed files with 112 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll; |
|||
|
|||
/** |
|||
* 社区相关统计 |
|||
* |
|||
* @author zhaoqifeng |
|||
* @date 2020/9/18 10:33 |
|||
*/ |
|||
public interface IndexCollCommunityService { |
|||
} |
@ -0,0 +1,10 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll; |
|||
|
|||
/** |
|||
* 区直部门相关统计 |
|||
* |
|||
* @author zhaoqifeng |
|||
* @date 2020/9/18 10:43 |
|||
*/ |
|||
public interface IndexCollDistrictDepartmentService { |
|||
} |
@ -0,0 +1,10 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll; |
|||
|
|||
/** |
|||
* 全区相关统计 |
|||
* |
|||
* @author zhaoqifeng |
|||
* @date 2020/9/18 10:44 |
|||
*/ |
|||
public interface IndexCollDistrictService { |
|||
} |
@ -0,0 +1,10 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll; |
|||
|
|||
/** |
|||
* 街道相关统计 |
|||
* |
|||
* @author zhaoqifeng |
|||
* @date 2020/9/18 10:35 |
|||
*/ |
|||
public interface IndexCollStreetService { |
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll.impl; |
|||
|
|||
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
|||
import com.epmet.constant.DataSourceConstant; |
|||
import com.epmet.service.evaluationindex.indexcoll.IndexCollCommunityService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/9/18 10:34 |
|||
*/ |
|||
@Service |
|||
@Slf4j |
|||
@DataSource(DataSourceConstant.EVALUATION_INDEX) |
|||
public class IndexCollCommunityServiceImpl implements IndexCollCommunityService { |
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll.impl; |
|||
|
|||
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
|||
import com.epmet.constant.DataSourceConstant; |
|||
import com.epmet.service.evaluationindex.indexcoll.IndexCollDistrictDepartmentService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/9/18 10:43 |
|||
*/ |
|||
@Service |
|||
@Slf4j |
|||
@DataSource(DataSourceConstant.EVALUATION_INDEX) |
|||
public class IndexCollDistrictDepartmentServiceImpl implements IndexCollDistrictDepartmentService { |
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll.impl; |
|||
|
|||
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
|||
import com.epmet.constant.DataSourceConstant; |
|||
import com.epmet.service.evaluationindex.indexcoll.IndexCollDistrictService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/9/18 10:45 |
|||
*/ |
|||
@Service |
|||
@Slf4j |
|||
@DataSource(DataSourceConstant.EVALUATION_INDEX) |
|||
public class IndexCollDistrictServiceImpl implements IndexCollDistrictService { |
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.epmet.service.evaluationindex.indexcoll.impl; |
|||
|
|||
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
|||
import com.epmet.constant.DataSourceConstant; |
|||
import com.epmet.service.evaluationindex.indexcoll.IndexCollStreetService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/9/18 10:35 |
|||
*/ |
|||
@Service |
|||
@Slf4j |
|||
@DataSource(DataSourceConstant.EVALUATION_INDEX) |
|||
public class IndexCollStreetServiceImpl implements IndexCollStreetService { |
|||
} |
Loading…
Reference in new issue