图谱-后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
394 B

package com.teaching.backend.mapper.message;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.teaching.backend.model.entity.message.UserInbox;
import java.util.List;
/**
* <p>
* Mapper 接口
* </p>
*
* @author zjh
* @since 2024-08-06
*/
public interface UserInboxMapper extends BaseMapper<UserInbox> {
boolean insertBatchInBox(List<UserInbox> userInboxes);
}