初始项目信息导入
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user