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

11 lines
316 B
Java

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