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.
26 lines
540 B
26 lines
540 B
3 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.commons.mybatis.service.BaseService;
|
||
|
import com.epmet.dto.form.IcResiCollectFormDTO;
|
||
|
import com.epmet.entity.IcResiCollectEntity;
|
||
|
|
||
|
/**
|
||
|
* 居民信息采集表
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-03-18
|
||
|
*/
|
||
|
public interface IcResiCollectService extends BaseService<IcResiCollectEntity> {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 默认保存
|
||
|
*
|
||
|
* @param dto
|
||
|
* @return void
|
||
|
* @author generator
|
||
|
* @date 2022-03-18
|
||
|
*/
|
||
|
void save(IcResiCollectFormDTO dto);
|
||
|
|
||
|
}
|