DictCateMapper.java 965 Bytes
package com.viontech.fanxing.ops.mapper;

import com.viontech.fanxing.commons.base.BaseMapper;
import com.viontech.fanxing.commons.model.DictCate;
import com.viontech.fanxing.commons.model.DictCateExample;
import org.apache.ibatis.annotations.Param;

import java.util.List;

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);
}