You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.zc.business.domain;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 执行操作对象 dc_execute_action
|
|
|
|
*
|
|
|
|
* @author wangjiabao
|
|
|
|
* @date 2024-02-21
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiModel("执行操作实体")
|
|
|
|
@Data
|
|
|
|
@AllArgsConstructor
|
|
|
|
@NoArgsConstructor
|
|
|
|
public class DcExecuteAction{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 执行操作编号
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("执行操作编号")
|
|
|
|
private String id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 所属预案
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("所属预案")
|
|
|
|
private Integer emergencyPlansId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设备类型
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("设备类型")
|
|
|
|
private int deviceType;
|
|
|
|
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
private Date createTime;
|
|
|
|
@ApiModelProperty("修改时间")
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 检索规则条件
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("检索规则条件")
|
|
|
|
private int searchRule;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 个数/里程
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("个数/里程")
|
|
|
|
private Integer number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设备列表
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("设备列表")
|
|
|
|
private String deviceList;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 执行操作配置
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("执行操作配置")
|
|
|
|
private String executeConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 恢复操作配置
|
|
|
|
*/
|
|
|
|
@ApiModelProperty("恢复操作配置")
|
|
|
|
private String recoverConfig;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|