TOlapColumnMapper.java
943 字节
package com.tianbo.mapper;
import com.tianbo.model.TOlapColumn;
import com.tianbo.model.TOlapColumnExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface TOlapColumnMapper {
int countByExample(TOlapColumnExample example);
int deleteByExample(TOlapColumnExample example);
int deleteByPrimaryKey(BigDecimal columnid);
int insert(TOlapColumn record);
int insertSelective(TOlapColumn record);
List<TOlapColumn> selectByExample(TOlapColumnExample example);
TOlapColumn selectByPrimaryKey(BigDecimal columnid);
int updateByExampleSelective(@Param("record") TOlapColumn record, @Param("example") TOlapColumnExample example);
int updateByExample(@Param("record") TOlapColumn record, @Param("example") TOlapColumnExample example);
int updateByPrimaryKeySelective(TOlapColumn record);
int updateByPrimaryKey(TOlapColumn record);
}