mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-08-08 16:12:42 +08:00
65 lines
1.4 KiB
Java
65 lines
1.4 KiB
Java
package com.ics.admin.mapper;
|
|
|
|
import com.ics.admin.domain.WisdomStaff;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 房间用户关联Mapper接口
|
|
*
|
|
* @author ics
|
|
* @date 2024-08-21
|
|
*/
|
|
@Mapper
|
|
public interface WisdomStaffMapper extends BaseMapper<WisdomStaff> {
|
|
/**
|
|
* 查询房间用户关联
|
|
*
|
|
* @param id 房间用户关联ID
|
|
* @return 房间用户关联
|
|
*/
|
|
WisdomStaff selectWisdomStaffById(Long id);
|
|
|
|
/**
|
|
* 查询房间用户关联列表
|
|
*
|
|
* @param wisdomStaff 房间用户关联
|
|
* @return 房间用户关联集合
|
|
*/
|
|
List<WisdomStaff> selectWisdomStaffList(WisdomStaff wisdomStaff);
|
|
|
|
/**
|
|
* 新增房间用户关联
|
|
*
|
|
* @param wisdomStaff 房间用户关联
|
|
* @return 结果
|
|
*/
|
|
int insertWisdomStaff(WisdomStaff wisdomStaff);
|
|
|
|
/**
|
|
* 修改房间用户关联
|
|
*
|
|
* @param wisdomStaff 房间用户关联
|
|
* @return 结果
|
|
*/
|
|
int updateWisdomStaff(WisdomStaff wisdomStaff);
|
|
|
|
/**
|
|
* 删除房间用户关联
|
|
*
|
|
* @param id 房间用户关联ID
|
|
* @return 结果
|
|
*/
|
|
int deleteWisdomStaffById(Long id);
|
|
|
|
/**
|
|
* 批量删除房间用户关联
|
|
*
|
|
* @param ids 需要删除的数据ID
|
|
* @return 结果
|
|
*/
|
|
int deleteWisdomStaffByIds(String[] ids);
|
|
}
|