mcwl-ai/mcwl-communityCenter/src/main/java/com/mcwl/communityCenter/mapper/InviteMapper.java

10 lines
260 B
Java

package com.mcwl.communityCenter.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mcwl.communityCenter.domain.Invite;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface InviteMapper extends BaseMapper<Invite> {
}