| | |
| | | |
| | | import com.oying.modules.message.domain.MessageSystem; |
| | | import com.oying.modules.message.domain.dto.MessageSystemQueryCriteria; |
| | | |
| | | import java.util.Date; |
| | | import java.util.Map; |
| | | import java.util.List; |
| | | import java.io.IOException; |
| | |
| | | import com.oying.utils.PageResult; |
| | | |
| | | /** |
| | | * @description 服务接口 |
| | | * @author 李萌 |
| | | * @date 2025-05-14 |
| | | **/ |
| | | * @description 服务接口 |
| | | * @author 李萌 |
| | | * @date 2025-05-20 |
| | | **/ |
| | | public interface MessageSystemService extends IService<MessageSystem> { |
| | | |
| | | /** |
| | | * 查询数据分页 |
| | | * @param criteria 条件 |
| | | * @param page 分页参数 |
| | | * @return PageResult |
| | | */ |
| | | * 查询数据分页 |
| | | * @param criteria 条件 |
| | | * @param page 分页参数 |
| | | * @return PageResult |
| | | */ |
| | | PageResult<MessageSystem> queryAll(MessageSystemQueryCriteria criteria, Page<Object> page); |
| | | |
| | | /** |
| | | * 查询所有数据不分页 |
| | | * @param criteria 条件参数 |
| | | * @return List<MessageSystemDto> |
| | | */ |
| | | * 查询所有数据不分页 |
| | | * @param criteria 条件参数 |
| | | * @return List<MessageSystemDto> |
| | | */ |
| | | List<MessageSystem> queryAll(MessageSystemQueryCriteria criteria); |
| | | |
| | | /** |
| | | * 创建 |
| | | * @param resources / |
| | | */ |
| | | * 创建 |
| | | * @param resources / |
| | | */ |
| | | void create(MessageSystem resources); |
| | | |
| | | /** |
| | | * 编辑 |
| | | * @param resources / |
| | | */ |
| | | * 编辑 |
| | | * @param resources / |
| | | */ |
| | | void update(MessageSystem resources); |
| | | |
| | | /** |
| | | * 多选删除 |
| | | * @param ids / |
| | | */ |
| | | void deleteAll(List<Long> ids); |
| | | * 多选删除 |
| | | * @param ids / |
| | | */ |
| | | void deleteAll(List<Integer> ids); |
| | | |
| | | /** |
| | | * 导出数据 |
| | | * @param all 待导出的数据 |
| | | * @param response / |
| | | * @throws IOException / |
| | | */ |
| | | * 导出数据 |
| | | * @param all 待导出的数据 |
| | | * @param response / |
| | | * @throws IOException / |
| | | */ |
| | | void download(List<MessageSystem> all, HttpServletResponse response) throws IOException; |
| | | |
| | | |
| | | } |