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.
78 lines
1.5 KiB
78 lines
1.5 KiB
3 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.commons.mybatis.service.BaseService;
|
||
|
import com.epmet.commons.tools.page.PageData;
|
||
|
import com.epmet.dto.IcDangerAreaDTO;
|
||
|
import com.epmet.entity.IcDangerAreaEntity;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* 疫情风险地区
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-10-31
|
||
|
*/
|
||
|
public interface IcDangerAreaService extends BaseService<IcDangerAreaEntity> {
|
||
|
|
||
|
/**
|
||
|
* 默认分页
|
||
|
*
|
||
|
* @param params
|
||
|
* @return PageData<IcDangerAreaDTO>
|
||
|
* @author generator
|
||
|
* @date 2022-10-31
|
||
|
*/
|
||
|
PageData<IcDangerAreaDTO> page(Map<String, Object> params);
|
||
|
|
||
|
/**
|
||
|
* 默认查询
|
||
|
*
|
||
|
* @param params
|
||
|
* @return java.util.List<IcDangerAreaDTO>
|
||
|
* @author generator
|
||
|
* @date 2022-10-31
|
||
|
*/
|
||
|
List<IcDangerAreaDTO> list(Map<String, Object> params);
|
||
|
|
||
|
/**
|
||
|
* 单条查询
|
||
|
*
|
||
|
* @param id
|
||
|
* @return IcDangerAreaDTO
|
||
|
* @author generator
|
||
|
* @date 2022-10-31
|
||
|
*/
|
||
|
IcDangerAreaDTO get(String id);
|
||
|
|
||
|
/**
|
||
|
* 默认保存
|
||
|
*
|
||
|
* @param dto
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2022-10-31
|
||
|
*/
|
||
|
void save(IcDangerAreaDTO dto);
|
||
|
|
||
|
/**
|
||
|
* 默认更新
|
||
|
*
|
||
|
* @param dto
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2022-10-31
|
||
|
*/
|
||
|
void update(IcDangerAreaDTO dto);
|
||
|
|
||
|
/**
|
||
|
* 批量删除
|
||
|
*
|
||
|
* @param ids
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2022-10-31
|
||
|
*/
|
||
|
void delete(String[] ids);
|
||
|
}
|