DictCateMapper.java 956 Bytes
package com.viontech.fanxing.code.mapper;

import com.viontech.fanxing.code.base.BaseMapper;
import com.viontech.fanxing.code.model.DictCate;
import com.viontech.fanxing.code.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);
}