17 changed files with 89 additions and 3 deletions
@ -0,0 +1,16 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Description 政府端管理楼院小组业务 |
|||
* @ClassName ResiGroupController |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:30 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("resi/group") |
|||
public class ResiGroupController { |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Description 政府端管理热心居民业务 |
|||
* @ClassName ResiWarmheartedController |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:30 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("resi/warmhearted") |
|||
public class ResiWarmheartedController { |
|||
|
|||
} |
@ -0,0 +1,10 @@ |
|||
package com.epmet.service; |
|||
|
|||
/** |
|||
* @Description |
|||
* @IntefaceName ResiGroupService |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:40 |
|||
*/ |
|||
public interface ResiGroupService { |
|||
} |
@ -0,0 +1,10 @@ |
|||
package com.epmet.service; |
|||
|
|||
/** |
|||
* @Description |
|||
* @IntefaceName ResiWarmheartedService |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:37 |
|||
*/ |
|||
public interface ResiWarmheartedService { |
|||
} |
@ -0,0 +1,14 @@ |
|||
package com.epmet.service.impl; |
|||
|
|||
import com.epmet.service.ResiGroupService; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @Description |
|||
* @ClassName ResiGroupServiceImpl |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:38 |
|||
*/ |
|||
@Service |
|||
public class ResiGroupServiceImpl implements ResiGroupService{ |
|||
} |
@ -0,0 +1,12 @@ |
|||
package com.epmet.service.impl; |
|||
|
|||
import com.epmet.service.ResiWarmheartedService; |
|||
|
|||
/** |
|||
* @Description |
|||
* @ClassName ResiWarmheartedServiceImpl |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:41 |
|||
*/ |
|||
public class ResiWarmheartedServiceImpl implements ResiWarmheartedService { |
|||
} |
@ -0,0 +1,10 @@ |
|||
package com.epmet.util; |
|||
|
|||
/** |
|||
* @Description 网格管理模块常量类 |
|||
* @IntefaceName ModuleConstant |
|||
* @Author wangc |
|||
* @date 2020.04.16 15:42 |
|||
*/ |
|||
public interface ModuleConstant { |
|||
} |
Loading…
Reference in new issue