package com.ghsc.partybuild.mapper; import com.ghsc.partybuild.model.AstAssetinfo; import com.ghsc.partybuild.model.AstAssetinfoExample; import com.ghsc.partybuild.model.AstAssetinfoWithBLOBs; import java.util.List; import org.apache.ibatis.annotations.Param; public interface AstAssetinfoMapper { long countByExample(AstAssetinfoExample example); int deleteByExample(AstAssetinfoExample example); int deleteByPrimaryKey(String assetid); int insert(AstAssetinfoWithBLOBs record); int insertSelective(AstAssetinfoWithBLOBs record); List selectByExampleWithBLOBs(AstAssetinfoExample example); List selectByExample(AstAssetinfoExample example); AstAssetinfoWithBLOBs selectByPrimaryKey(String assetid); int updateByExampleSelective(@Param("record") AstAssetinfoWithBLOBs record, @Param("example") AstAssetinfoExample example); int updateByExampleWithBLOBs(@Param("record") AstAssetinfoWithBLOBs record, @Param("example") AstAssetinfoExample example); int updateByExample(@Param("record") AstAssetinfo record, @Param("example") AstAssetinfoExample example); int updateByPrimaryKeySelective(AstAssetinfoWithBLOBs record); int updateByPrimaryKeyWithBLOBs(AstAssetinfoWithBLOBs record); int updateByPrimaryKey(AstAssetinfo record); }