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
520 B
21 lines
520 B
2 years ago
|
package com.epmet.dao;
|
||
|
|
||
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
||
|
import com.epmet.dto.PovertyManageDTO;
|
||
|
import com.epmet.dto.form.povertyManage.PovertyManageFormDto;
|
||
|
import com.epmet.entity.PovertyManageEntity;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2023-06-16
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface PovertyManageDao extends BaseDao<PovertyManageEntity> {
|
||
|
|
||
|
List<PovertyManageDTO> selectPage(PovertyManageFormDto formDTO);
|
||
|
|
||
|
}
|