Blame view

src/main/java/com/sincere/student/mapper/SysYxSchoolConsultMapper.java 994 Bytes
e5f98c16   徐泉   招生咨询会
1
2
3
package com.sincere.student.mapper;

import com.sincere.student.dto.yx.AddYxSchoolConsultVo;
21d1bd0f   徐泉   招生咨询会
4
import com.sincere.student.dto.yx.QueryCountYxSchoolConsult;
e5f98c16   徐泉   招生咨询会
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
21d1bd0f   徐泉   招生咨询会
26
27

    List<SysYxSchoolConsult> countConsultList(QueryCountYxSchoolConsult consult);
e5f98c16   徐泉   招生咨询会
28