SysYxSchoolConsultMapper.java
932 Bytes
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<SysYxSchoolConsult> selectList(AddYxSchoolConsultVo record);
int getListCount(AddYxSchoolConsultVo record);
List<SysYxSchoolConsult> countSort(@Param(value = "sort") int sort, @Param(value = "flag") int flag, @Param(value = "id") Integer id);
int updateSort(SysYxSchoolConsult record);
List<SysYxSchoolConsult> countConsultList(QueryCountYxSchoolConsult consult);
}