12345678910111213141516171819202122232425262728293031323334353637 |
- 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<AstAssetinfoWithBLOBs> selectByExampleWithBLOBs(AstAssetinfoExample example);
- List<AstAssetinfo> 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);
- }
|