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
/*************************************************************************
 * 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 model.system;
 
import common.model.BaseModel;
import core.plugin.mybatis.annotation.ColumnMap;
import org.apache.ibatis.type.Alias;
 
/**
 * <p>
 *     系统元数据模型
 *
 * @author CSJ
 */
@Alias("SystemMetaData")
public class SystemMetaData extends BaseModel{
 
    private String id;
 
    private float version;
 
    @ColumnMap(column = "update_time")
    private String updateTime;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public float getVersion() {
        return version;
    }
 
    public void setVersion(float version) {
        this.version = version;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
}