综合管理平台数据库数据模拟程序
Administrator
2021-03-25 578faecf2a59d3062c96aed307b6df80c87a315d
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
66
67
68
69
70
71
package com.mode;
 
import java.util.Date;
 
public class Device_Inf {
    
    public int system_id;                 // 'ϵͳid',
    public String system_name;             // 'ϵͳÃû³Æ',
    public int device_id;                 // 'É豸id',
    public String device_name;             // 'É豸Ãû³Æ',
    public String device_ip;                // 'É豸ip',
    public int maint_cycle;             // 'ά»¤ÖÜÆÚ',
    public Date use_starttime;             // '¿ªÊ¼Ê¹ÓÃʱ¼ä',
    public int user_id;                 // '¼ÈëÓû§',
    
    
    public int getSystem_id() {
        return system_id;
    }
    public String getSystem_name() {
        return system_name;
    }
    public int getDevice_id() {
        return device_id;
    }
    public String getDevice_name() {
        return device_name;
    }
    public String getDevice_ip() {
        return device_ip;
    }
    public int getMaint_cycle() {
        return maint_cycle;
    }
    public Date getUse_starttime() {
        return use_starttime;
    }
    public int getUser_id() {
        return user_id;
    }
    public void setSystem_id(int system_id) {
        this.system_id = system_id;
    }
    public void setSystem_name(String system_name) {
        this.system_name = system_name;
    }
    public void setDevice_id(int device_id) {
        this.device_id = device_id;
    }
    public void setDevice_name(String device_name) {
        this.device_name = device_name;
    }
    public void setDevice_ip(String device_ip) {
        this.device_ip = device_ip;
    }
    public void setMaint_cycle(int maint_cycle) {
        this.maint_cycle = maint_cycle;
    }
    public void setUse_starttime(Date use_starttime) {
        this.use_starttime = use_starttime;
    }
    public void setUser_id(int user_id) {
        this.user_id = user_id;
    }
    @Override
    public String toString() {
        return "Device_Inf [system_id=" + system_id + ", system_name=" + system_name + ", device_id=" + device_id
                + ", device_name=" + device_name + ", device_ip=" + device_ip + ", maint_cycle=" + maint_cycle
                + ", use_starttime=" + use_starttime + ", user_id=" + user_id + "]";
    }
}