DictCateMapper.java
965 Bytes
package com.viontech.fanxing.code.mapper;
import com.viontech.fanxing.commons.base.BaseMapper;
import com.viontech.fanxing.commons.model.DictCate;
import com.viontech.fanxing.commons.model.DictCateExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DictCateMapper extends BaseMapper {
int countByExample(DictCateExample example);
int deleteByExample(DictCateExample example);
int deleteByPrimaryKey(Long id);
int insert(DictCate record);
int insertSelective(DictCate record);
List<DictCate> selectByExample(DictCateExample example);
DictCate selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") DictCate record, @Param("example") DictCateExample example);
int updateByExample(@Param("record") DictCate record, @Param("example") DictCateExample example);
int updateByPrimaryKeySelective(DictCate record);
int updateByPrimaryKey(DictCate record);
}