OperateLogService.java 230 B

12345678
  1. package com.qmth.exam.reserve.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.qmth.exam.reserve.entity.OperateLogEntity;
  4. public interface OperateLogService extends IService<OperateLogEntity> {
  5. }