12345678910111213141516171819 |
- package com.boot.security.server.dao;
- import java.util.Map;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- @Mapper
- public interface CommonDao {
- /**
- * 根据职位id删除用户收藏
- * Description:
- * @author xiaoding DateTime 2019年7月11日 下午2:47:14
- * @param id
- * @return
-
- */
- int deleteAllByOtherId(@Param("params")Map<String, Object> params);
- }
|