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);
|