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.
32 lines
1005 B
Java
32 lines
1005 B
Java
package com.sztzjy.linkCommerce.mapper;
|
|
|
|
import com.sztzjy.linkCommerce.entity.CgcpdwAnswer;
|
|
import com.sztzjy.linkCommerce.entity.CgcpdwAnswerExample;
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
@Mapper
|
|
public interface CgcpdwAnswerMapper {
|
|
long countByExample(CgcpdwAnswerExample example);
|
|
|
|
int deleteByExample(CgcpdwAnswerExample example);
|
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
int insert(CgcpdwAnswer record);
|
|
|
|
int insertSelective(CgcpdwAnswer record);
|
|
|
|
List<CgcpdwAnswer> selectByExample(CgcpdwAnswerExample example);
|
|
|
|
CgcpdwAnswer selectByPrimaryKey(String id);
|
|
|
|
int updateByExampleSelective(@Param("record") CgcpdwAnswer record, @Param("example") CgcpdwAnswerExample example);
|
|
|
|
int updateByExample(@Param("record") CgcpdwAnswer record, @Param("example") CgcpdwAnswerExample example);
|
|
|
|
int updateByPrimaryKeySelective(CgcpdwAnswer record);
|
|
|
|
int updateByPrimaryKey(CgcpdwAnswer record);
|
|
} |