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.
102 lines
2.6 KiB
102 lines
2.6 KiB
package com.epmet.service;
|
|
|
|
import com.epmet.commons.mybatis.service.BaseService;
|
|
import com.epmet.commons.tools.page.PageData;
|
|
import com.epmet.commons.tools.security.dto.TokenDto;
|
|
import com.epmet.commons.tools.utils.Result;
|
|
import com.epmet.dto.form.*;
|
|
import com.epmet.dto.result.CollectHouseInfoResultDTO;
|
|
import com.epmet.dto.result.CollectListResultDTO;
|
|
import com.epmet.dto.result.CollectPageListDTO;
|
|
import com.epmet.dto.result.LatestCollectResDTO;
|
|
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);
|
|
|
|
/**
|
|
* Desc: 查询采集居民信息
|
|
* @param formDTO
|
|
* @author zxc
|
|
* @date 2022/3/18 19:23
|
|
*/
|
|
PageData<CollectListResultDTO> getCollectList(CollectListFormDTO formDTO);
|
|
|
|
/**
|
|
* 居民端小程序:社区居民信息登记-提交
|
|
* @param formDTO
|
|
*/
|
|
void saveResi(ResiCollectFormDTO formDTO);
|
|
|
|
/**
|
|
* 居民端小程序:社区居民信息登记-查询
|
|
* @param formDTO
|
|
* @return
|
|
*/
|
|
LatestCollectResDTO latestSubmit(LatestSubmitCollectFormDTO formDTO);
|
|
|
|
/**
|
|
* 信息采集详情
|
|
* @param formDTO
|
|
* @return
|
|
*/
|
|
CollectListResultDTO detail(CollectListFormDTO formDTO);
|
|
|
|
/**
|
|
* 信息登记审核
|
|
* @param formDTO
|
|
* @return
|
|
*/
|
|
void collectCheck(IcResiCollectCheckFormDTO formDTO, TokenDto tokenDto);
|
|
|
|
/**
|
|
* @describe: 扫描社区/小区二维码进行居民信息登记
|
|
* @author wangtong
|
|
* @date 2022/8/2 17:14
|
|
* @params [formDTO]
|
|
* @return com.epmet.commons.tools.utils.Result
|
|
*/
|
|
Result saveCollectInfo(SaveCollectFormDTO formDTO);
|
|
|
|
/**
|
|
* @describe: 我的登记列表
|
|
* @author wangtong
|
|
* @date 2022/8/3 14:14
|
|
* @params [dto]
|
|
* @return com.epmet.commons.tools.page.PageData<com.epmet.dto.result.CollectPageListDTO>
|
|
*/
|
|
PageData<CollectPageListDTO> getCollectPage(CollectPageFormDTO dto);
|
|
|
|
/**
|
|
* @describe: 查看居民采集信息详情
|
|
* @author wangtong
|
|
* @date 2022/8/3 15:08
|
|
* @params [dto]
|
|
* @return com.epmet.commons.tools.utils.Result
|
|
*/
|
|
Result getCollectDetail(CollectDetailFormDTO dto);
|
|
|
|
/**
|
|
* 信息采集-获取房屋信息
|
|
* @param formDTO
|
|
* @return
|
|
*/
|
|
CollectHouseInfoResultDTO getHouseDetailByCollect(IcResiCollectGetDetailFormDTO formDTO);
|
|
}
|
|
|
|
|