e5f98c16
徐泉
招生咨询会
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.sincere.student.mapper;
import com.sincere.student.dto.yx.AddYxSchoolVo;
import com.sincere.student.model.yx.SysYxSchool;
import java.util.List;
public interface SysYxSchoolMapper {
int deleteByPrimaryKey(Integer id);
int insertSelective(SysYxSchool record);
SysYxSchool selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(SysYxSchool record);
List<SysYxSchool> selectList(AddYxSchoolVo vo);
int getListCount(AddYxSchoolVo vo);
}
|