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;
|
}
|
}
|