| | |
| | | |
| | | public interface InternetSearchVideoService { |
| | | |
| | | public void save(@Valid InternetSearchVideo video) throws ParamsException, Exception; |
| | | public InternetSearchVideo save(@Valid InternetSearchVideo video) throws ParamsException, Exception; |
| | | |
| | | public Set<Integer> listResourceId(String id); |
| | | |
| | |
| | | |
| | | public InternetSearchVideo selectByPrimaryKey(String id); |
| | | |
| | | /** |
| | | * 主键查询缓存 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | public InternetSearchVideo selectByPrimaryKeyCache(String id); |
| | | |
| | | public List<InternetSearchVideo> listByIds(List<String> ids); |
| | | |
| | | /** |
| | | * @author hxh |
| | | * @description 移除资源ID,如果没有资源了就需要删除整条数据 |
| | | * @date 11:11 2024/7/18 |
| | | * @param: id |
| | | * @param: resourceId |
| | | * @return void |
| | | **/ |
| | | public void removeResourceId(String id, Integer resourceId); |
| | | |
| | | } |