You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
994 B
Java
30 lines
994 B
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.mapper;
|
||
|
|
|
||
|
|
import com.sztzjy.linkCommerce.entity.SchoolFaculty;
|
||
|
|
import com.sztzjy.linkCommerce.entity.SchoolFacultyExample;
|
||
|
|
import java.util.List;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
public interface SchoolFacultyMapper {
|
||
|
|
long countByExample(SchoolFacultyExample example);
|
||
|
|
|
||
|
|
int deleteByExample(SchoolFacultyExample example);
|
||
|
|
|
||
|
|
int deleteByPrimaryKey(String schoolFacultyId);
|
||
|
|
|
||
|
|
int insert(SchoolFaculty record);
|
||
|
|
|
||
|
|
int insertSelective(SchoolFaculty record);
|
||
|
|
|
||
|
|
List<SchoolFaculty> selectByExample(SchoolFacultyExample example);
|
||
|
|
|
||
|
|
SchoolFaculty selectByPrimaryKey(String schoolFacultyId);
|
||
|
|
|
||
|
|
int updateByExampleSelective(@Param("record") SchoolFaculty record, @Param("example") SchoolFacultyExample example);
|
||
|
|
|
||
|
|
int updateByExample(@Param("record") SchoolFaculty record, @Param("example") SchoolFacultyExample example);
|
||
|
|
|
||
|
|
int updateByPrimaryKeySelective(SchoolFaculty record);
|
||
|
|
|
||
|
|
int updateByPrimaryKey(SchoolFaculty record);
|
||
|
|
}
|