Commit 7e2b4d31 authored by 赵啸非's avatar 赵啸非

添加批量激活设备

parent 9e321361
<template> <template>
<!-- 弹出框表单 --> <!-- 弹出框表单 -->
<el-dialog :title="title" :visible.sync="open" width="90%" append-to-body> <el-dialog :title="title" :visible.sync="open" width="70%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="120px"> <el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-row> <el-row>
......
...@@ -74,4 +74,4 @@ INSERT INTO `mortals_xhx_task` VALUES (9, '设备状态修正任务', 'deviceSta ...@@ -74,4 +74,4 @@ INSERT INTO `mortals_xhx_task` VALUES (9, '设备状态修正任务', 'deviceSta
INSERT INTO `mortals_xhx_param` VALUES (null, '设备资源部署细致', NULL, NULL, 'distribute_path', '/home/publish/device-manager-ui/homeDeviceUrl', 1, 4, 0, NULL, '2022-11-14 10:02:41', 1, '系统管理员'); INSERT INTO `mortals_xhx_param` VALUES (null, '设备资源部署细致', NULL, NULL, 'distribute_path', '/home/publish/device-manager-ui/homeDeviceUrl', 1, 4, 0, NULL, '2022-11-14 10:02:41', 1, '系统管理员');
INSERT INTO `mortals_xhx_param` VALUES (null, '应用发布编码', 'appPublish', NULL, '信息发布屏', 'information-publish', 1, 4, 0, 'appPublish', NULL, NULL, NULL); INSERT INTO `mortals_xhx_param` VALUES (null, '应用发布编码', 'appPublish', NULL ,'information-publish','信息发布屏', 1, 4, 0, 'appPublish', NULL, NULL, NULL);
package com.mortals.xhx.module.app.model; package com.mortals.xhx.module.app.model;
import java.util.List;
import java.util.ArrayList;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.mortals.framework.annotation.Excel;
import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.app.model.vo.AppPublishVo; import com.mortals.xhx.module.app.model.vo.AppPublishVo;
/** /**
* 应用发布部署实体对象 * 应用发布部署实体对象
...@@ -180,18 +175,18 @@ public class AppPublishEntity extends AppPublishVo { ...@@ -180,18 +175,18 @@ public class AppPublishEntity extends AppPublishVo {
public void initAttrValue(){ public void initAttrValue(){
this.appCode = null; this.appCode = "";
this.appName = null; this.appName = "";
this.filePath = null; this.filePath = "";
this.distributeFilePath = null; this.distributeFilePath = "";
this.appType = null; this.appType = 0;
this.distribute = null; this.distribute = 0;
this.version = null; this.version = "1";
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment