12345678910111213141516171819202122232425 |
- /*
- * *************************************************
- * Copyright (c) 2018 QMTH. All Rights Reserved.
- * Created by Deason on 2018-07-16 17:49:59.
- * *************************************************
- */
- package cn.com.qmth.examcloud.app.service;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- /**
- * 网考业务服务接口
- */
- @Service
- public class OnLineExamService {
- private static Logger log = LoggerFactory.getLogger(OnLineExamService.class);
- @Autowired
- private PropertyService propertyService;
- }
|