36 lines
1.1 KiB
Java
36 lines
1.1 KiB
Java
package com.macro.mall.mapper;
|
|
|
|
import com.macro.mall.model.CmsSubject;
|
|
import com.macro.mall.model.CmsSubjectExample;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface CmsSubjectMapper {
|
|
int countByExample(CmsSubjectExample example);
|
|
|
|
int deleteByExample(CmsSubjectExample example);
|
|
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
int insert(CmsSubject record);
|
|
|
|
int insertSelective(CmsSubject record);
|
|
|
|
List<CmsSubject> selectByExampleWithBLOBs(CmsSubjectExample example);
|
|
|
|
List<CmsSubject> selectByExample(CmsSubjectExample example);
|
|
|
|
CmsSubject selectByPrimaryKey(Long id);
|
|
|
|
int updateByExampleSelective(@Param("record") CmsSubject record, @Param("example") CmsSubjectExample example);
|
|
|
|
int updateByExampleWithBLOBs(@Param("record") CmsSubject record, @Param("example") CmsSubjectExample example);
|
|
|
|
int updateByExample(@Param("record") CmsSubject record, @Param("example") CmsSubjectExample example);
|
|
|
|
int updateByPrimaryKeySelective(CmsSubject record);
|
|
|
|
int updateByPrimaryKeyWithBLOBs(CmsSubject record);
|
|
|
|
int updateByPrimaryKey(CmsSubject record);
|
|
} |