forked from rongchao/epmet-cloud-rizhao
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.
57 lines
1.2 KiB
57 lines
1.2 KiB
2 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.commons.mybatis.service.BaseService;
|
||
|
import com.epmet.dto.PovertyManageDTO;
|
||
|
import com.epmet.dto.form.povertyManage.PovertyManageFormDto;
|
||
|
import com.epmet.entity.PovertyManageEntity;
|
||
|
import com.github.pagehelper.Page;
|
||
|
|
||
|
/**
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2023-06-16
|
||
|
*/
|
||
|
public interface PovertyManageService extends BaseService<PovertyManageEntity> {
|
||
|
|
||
|
/**
|
||
|
* 单条查询
|
||
|
*
|
||
|
* @param id
|
||
|
* @return PovertyManageDTO
|
||
|
* @author generator
|
||
|
* @date 2023-06-16
|
||
|
*/
|
||
|
PovertyManageDTO get(String id);
|
||
|
|
||
|
/**
|
||
|
* 默认保存
|
||
|
*
|
||
|
* @param dto
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2023-06-16
|
||
|
*/
|
||
|
void save(PovertyManageFormDto dto);
|
||
|
|
||
|
/**
|
||
|
* 默认更新
|
||
|
*
|
||
|
* @param dto
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2023-06-16
|
||
|
*/
|
||
|
void update(PovertyManageFormDto dto);
|
||
|
|
||
|
/**
|
||
|
* 批量删除
|
||
|
*
|
||
|
* @param ids
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2023-06-16
|
||
|
*/
|
||
|
void delete(String[] ids);
|
||
|
|
||
|
Page<PovertyManageDTO> selectPage(PovertyManageFormDto formDTO);
|
||
|
}
|