SysCodeValueMapper.java 921 Bytes
package com.zteits.job.mapper;

import com.zteits.job.domain.SysCodeValue;
import com.zteits.job.domain.SysCodeValueExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface SysCodeValueMapper {
    long countByExample(SysCodeValueExample example);

    int deleteByExample(SysCodeValueExample example);

    int deleteByPrimaryKey(Long id);

    int insert(SysCodeValue record);

    int insertSelective(SysCodeValue record);

    List<SysCodeValue> selectByExample(SysCodeValueExample example);

    SysCodeValue selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") SysCodeValue record, @Param("example") SysCodeValueExample example);

    int updateByExample(@Param("record") SysCodeValue record, @Param("example") SysCodeValueExample example);

    int updateByPrimaryKeySelective(SysCodeValue record);

    int updateByPrimaryKey(SysCodeValue record);
}