forked from github/dataease
37 lines
1.2 KiB
Java
37 lines
1.2 KiB
Java
package io.dataease.base.mapper;
|
|
|
|
import io.dataease.base.domain.TestCaseComment;
|
|
import io.dataease.base.domain.TestCaseCommentExample;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface TestCaseCommentMapper {
|
|
long countByExample(TestCaseCommentExample example);
|
|
|
|
int deleteByExample(TestCaseCommentExample example);
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
int insert(TestCaseComment record);
|
|
|
|
int insertSelective(TestCaseComment record);
|
|
|
|
List<TestCaseComment> selectByExampleWithBLOBs(TestCaseCommentExample example);
|
|
|
|
List<TestCaseComment> selectByExample(TestCaseCommentExample example);
|
|
|
|
TestCaseComment selectByPrimaryKey(String id);
|
|
|
|
int updateByExampleSelective(@Param("record") TestCaseComment record, @Param("example") TestCaseCommentExample example);
|
|
|
|
int updateByExampleWithBLOBs(@Param("record") TestCaseComment record, @Param("example") TestCaseCommentExample example);
|
|
|
|
int updateByExample(@Param("record") TestCaseComment record, @Param("example") TestCaseCommentExample example);
|
|
|
|
int updateByPrimaryKeySelective(TestCaseComment record);
|
|
|
|
int updateByPrimaryKeyWithBLOBs(TestCaseComment record);
|
|
|
|
int updateByPrimaryKey(TestCaseComment record);
|
|
}
|