You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
325 B
21 lines
325 B
2 years ago
|
package com.ruoyi.screen.mapper;
|
||
|
|
||
|
import com.ruoyi.screen.domain.response.ZongzhiWorkDynamicsResponse;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 太仓综治网络管理数据层
|
||
|
*/
|
||
|
public interface ZongzhiScreenManageMapper {
|
||
|
|
||
|
/**
|
||
|
* 工作动态
|
||
|
*/
|
||
|
public List<ZongzhiWorkDynamicsResponse> getWorkDynamics();
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|