huanghongfa
2021-08-26 3adb33652e097365ced4bdb58c31fce476b244fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
 
}