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

17 lines
253 B
Java

package com.gszc.service;
import com.gszc.entity.Question;
import com.baomidou.mybatisplus.service.IService;
/**
* <p>
* 服务类
* </p>
*
* @author ky
* @since 2020-05-25
*/
public interface IQuestionService extends IService<Question> {
}