IT-KIMI_SHI\SINOIT.KIMI
2018-12-07 50eb1d766c470dc6ff927199eaee934f972a8b70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*************************************************************************
 * Copyright (C) Unpublished JiuDaoTech Software, Inc. All rights reserved.
 * JiuDaoTech Software, Inc., Confidential and Proprietary.
 * <p>
 * This software is subject to copyright protection
 * under the laws of the Public of China and other countries.
 * <p>
 * Unless otherwise explicitly stated, this software is provided
 * by JiuDaoTech "AS IS".
 *************************************************************************/
package service.system;
 
import model.system.SystemMetaData;
import model.system.SystemStatus;
 
/**
 * <p>
 * 系统检测
 *
 * @author CSJ
 */
public interface SystemDetectedService {
 
    /**
     * <p>
     * 检测系统初始化状态
     *
     * @return
     */
    SystemStatus checkSystemInitStatus(float appVersion);
 
    /**
     * <p>
     * 初始化系统核心表
     */
    void initSystemCoreTables();
 
    /**
     * <p>
     * 执行升级系统脚本
     */
    void upgradeSystem(float from, float to);
 
    /**
     * <p>
     * 查询系统元数据
     *
     * @return
     */
    SystemMetaData querySystemMetaDataAsObject();
 
    /**
     * <p>
     * 检测quartz初始化状态
     * @param appVersion
     * @return
     */
    SystemStatus checkQuartzInitStatus(float appVersion);
 
    /**
     * <p>
     * 初始化quartz核心表
     */
    void initQuartzCoreTables();
}