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.
16 lines
350 B
16 lines
350 B
4 years ago
|
package com.epmet.dao;
|
||
|
|
||
|
import com.epmet.commons.mybatis.dao.BaseDao;
|
||
|
import com.epmet.entity.IcResiMemberEntity;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* 居民信息成员表
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-03-18
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface IcResiMemberDao extends BaseDao<IcResiMemberEntity> {
|
||
|
|
||
|
}
|