付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package com.wgcloud.entity;
 
import java.util.Date;
 
/**
 * @version v3.3
 * @ClassName:AppInfo.java
 * @author: http://www.wgstart.com
 * @date: 2021年8月19日
 * @Description:  指令下发信息
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
public class ShellInfo extends BaseEntity {
 
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 指令名称
     */
    private String shellName;
 
    /**
     * 指令内容
     */
    private String shell;
 
    /**
     * 脚本执行状态,1正常,2已取消,3已完成
     */
    private String state;
 
    /**
     * 下发中数量
     */
    private Integer state1Count;
 
    /**
     * 已执行数量
     */
    private Integer stateOtherCount;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 脚本下发类型,1立即下发,2定时下发
     */
    private String shellType;
 
    /**
     * 脚本哪天下发,1今天,2明天
     * 已废弃,暂时未用
     */
    private String shellDay;
 
    /**
     * 脚本下发时间,存贮格式:2022-04-18 12:05:00
     * 脚本下发类型是立即下发时,此项为空
     */
    private String shellTime;
 
    /**
     * 所属用户账号
     */
    private String account;
 
    public String getShell() {
        return shell;
    }
 
    public void setShell(String shell) {
        this.shell = shell;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getState1Count() {
        return state1Count;
    }
 
    public void setState1Count(Integer state1Count) {
        this.state1Count = state1Count;
    }
 
    public Integer getStateOtherCount() {
        return stateOtherCount;
    }
 
    public void setStateOtherCount(Integer stateOtherCount) {
        this.stateOtherCount = stateOtherCount;
    }
 
    public String getShellName() {
        return shellName;
    }
 
    public void setShellName(String shellName) {
        this.shellName = shellName;
    }
 
    public String getShellType() {
        return shellType;
    }
 
    public void setShellType(String shellType) {
        this.shellType = shellType;
    }
 
    public String getShellTime() {
        return shellTime;
    }
 
    public void setShellTime(String shellTime) {
        this.shellTime = shellTime;
    }
 
    public String getShellDay() {
        return shellDay;
    }
 
    public void setShellDay(String shellDay) {
        this.shellDay = shellDay;
    }
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
}