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.
20 lines
558 B
20 lines
558 B
package cn.com.v2.service.impl;
|
|
|
|
import cn.com.v2.mapper.CommonQuestionMapper;
|
|
import cn.com.v2.model.CommonQuestion;
|
|
import cn.com.v2.service.CommonQuestionService;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* 常见问题(TCommonQuestion)表服务实现类
|
|
*
|
|
* @author wu
|
|
* @since 2025-04-21 09:36:07
|
|
*/
|
|
@Service("commonQuestionService")
|
|
public class CommonQuestionServiceImpl extends ServiceImpl<CommonQuestionMapper, CommonQuestion> implements CommonQuestionService {
|
|
|
|
}
|
|
|