QuestionAnswerService.java 286 B

12345678910111213141516
  1. package com.kym.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.kym.entity.QuestionAnswer;
  4. /**
  5. * <p>
  6. * 车辆表 服务类
  7. * </p>
  8. *
  9. * @author skyline
  10. * @since 2023-10-26
  11. */
  12. public interface QuestionAnswerService extends MPJBaseService<QuestionAnswer> {
  13. }