初始项目信息导入
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.macro.mall.mapper;
|
||||
|
||||
import com.macro.mall.model.CmsSubjectComment;
|
||||
import com.macro.mall.model.CmsSubjectCommentExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface CmsSubjectCommentMapper {
|
||||
int countByExample(CmsSubjectCommentExample example);
|
||||
|
||||
int deleteByExample(CmsSubjectCommentExample example);
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(CmsSubjectComment record);
|
||||
|
||||
int insertSelective(CmsSubjectComment record);
|
||||
|
||||
List<CmsSubjectComment> selectByExample(CmsSubjectCommentExample example);
|
||||
|
||||
CmsSubjectComment selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") CmsSubjectComment record, @Param("example") CmsSubjectCommentExample example);
|
||||
|
||||
int updateByExample(@Param("record") CmsSubjectComment record, @Param("example") CmsSubjectCommentExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(CmsSubjectComment record);
|
||||
|
||||
int updateByPrimaryKey(CmsSubjectComment record);
|
||||
}
|
||||
Reference in New Issue
Block a user