AstAssetinfoMapper.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.model.AstAssetinfo;
  3. import com.ghsc.partybuild.model.AstAssetinfoExample;
  4. import com.ghsc.partybuild.model.AstAssetinfoWithBLOBs;
  5. import java.util.List;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface AstAssetinfoMapper {
  8. long countByExample(AstAssetinfoExample example);
  9. int deleteByExample(AstAssetinfoExample example);
  10. int deleteByPrimaryKey(String assetid);
  11. int insert(AstAssetinfoWithBLOBs record);
  12. int insertSelective(AstAssetinfoWithBLOBs record);
  13. List<AstAssetinfoWithBLOBs> selectByExampleWithBLOBs(AstAssetinfoExample example);
  14. List<AstAssetinfo> selectByExample(AstAssetinfoExample example);
  15. AstAssetinfoWithBLOBs selectByPrimaryKey(String assetid);
  16. int updateByExampleSelective(@Param("record") AstAssetinfoWithBLOBs record, @Param("example") AstAssetinfoExample example);
  17. int updateByExampleWithBLOBs(@Param("record") AstAssetinfoWithBLOBs record, @Param("example") AstAssetinfoExample example);
  18. int updateByExample(@Param("record") AstAssetinfo record, @Param("example") AstAssetinfoExample example);
  19. int updateByPrimaryKeySelective(AstAssetinfoWithBLOBs record);
  20. int updateByPrimaryKeyWithBLOBs(AstAssetinfoWithBLOBs record);
  21. int updateByPrimaryKey(AstAssetinfo record);
  22. }