guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package cn.stylefeng.guns.modular.business.mapper;
 
import cn.stylefeng.guns.modular.business.dto.MentalAppointmentPageDTO;
import cn.stylefeng.guns.modular.business.dto.MentalTestMyMentalAppointmentDTO;
import cn.stylefeng.guns.modular.business.dto.UserMentalAppointmentPageResponseDTO;
import cn.stylefeng.guns.modular.business.entity.MentalAppointment;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 性格分析预约 Mapper 接口
 * </p>
 *
 * @author goupan
 * @since 2024-01-01
 */
public interface MentalAppointmentMapper extends BaseMapper<MentalAppointment> {
 
    List<MentalTestMyMentalAppointmentDTO> myMentalAppointment(@Param("userId") Long userId, @Param("consultantName") String consultantName, @Param("statusFlagList") List<Integer> statusFlagList);
 
    Page<UserMentalAppointmentPageResponseDTO> userMentalAppointmentPage(@Param("page") Page<Object> page, @Param("userId") Long userId, @Param("name") String name, @Param("telephone") String telephone, @Param("statusFlag") Integer statusFlag);
 
    Page<MentalAppointmentPageDTO> mentalAnalysisTimeConfigSchedule(@Param("page") Page<Object> page, @Param("searchBeginTime") String searchBeginTime, @Param("searchEndTime") String searchEndTime, @Param("counsellingInfoId") Long counsellingInfoId, @Param("workerNickName") String workerNickName, @Param("userNickName") String userNickName, @Param("userTelephone") String userTelephone, @Param("statusFlag") Integer statusFlag, @Param("statusFlagList") List<Integer> statusFlagList);
 
    List<MentalAppointmentPageDTO> mentalAnalysisTimeConfigSchedule(@Param("searchBeginTime") String searchBeginTime, @Param("searchEndTime") String searchEndTime, @Param("counsellingInfoId") Long counsellingInfoId, @Param("workerNickName") String workerNickName, @Param("userNickName") String userNickName, @Param("userTelephone") String userTelephone, @Param("statusFlag") Integer statusFlag, @Param("statusFlagList") List<Integer> statusFlagList);
 
}