package com.sincere.student.mapper; import com.sincere.student.dto.yx.AddYxSchoolConsultVo; import com.sincere.student.dto.yx.QueryCountYxSchoolConsult; import com.sincere.student.model.yx.SysYxSchoolConsult; import org.apache.ibatis.annotations.Param; import java.util.List; public interface SysYxSchoolConsultMapper { int deleteByPrimaryKey(Integer id); int insertSelective(SysYxSchoolConsult record); SysYxSchoolConsult selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(SysYxSchoolConsult record); List selectList(AddYxSchoolConsultVo record); int getListCount(AddYxSchoolConsultVo record); List countSort(@Param(value = "sort") int sort, @Param(value = "flag") int flag, @Param(value = "id") Integer id); int updateSort(SysYxSchoolConsult record); List countConsultList(QueryCountYxSchoolConsult consult); // int getCountConsult(QueryCountYxSchoolConsult record); }