package com.panzhihua.service_community.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.service_community.model.dos.ComActReserveAnswerContentDO;
|
|
/**
|
* @auther lyq
|
* @create 2021-08-23 10:33:32
|
* @describe 预约登记回答记录内容 服务类
|
*/
|
public interface ComActReserveAnswerContentService extends IService<ComActReserveAnswerContentDO> {
|
|
R exportRegisterAdmin(Long reserveId);
|
|
}
|