OnLineExamService.java 686 B

123456789101112131415161718192021222324252627
  1. /*
  2. * *************************************************
  3. * Copyright (c) 2018 QMTH. All Rights Reserved.
  4. * Created by Deason on 2018-07-16 17:49:59.
  5. * *************************************************
  6. */
  7. package cn.com.qmth.examcloud.app.service;
  8. import cn.com.qmth.examcloud.app.model.Result;
  9. import org.slf4j.Logger;
  10. import org.slf4j.LoggerFactory;
  11. import org.springframework.stereotype.Service;
  12. /**
  13. * 网考业务服务接口
  14. */
  15. @Service
  16. public class OnLineExamService {
  17. private static Logger log = LoggerFactory.getLogger(OnLineExamService.class);
  18. public Result init() throws Exception {
  19. log.debug("init...");
  20. return new Result().success();
  21. }
  22. }