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

11 lines
328 B
Java

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