Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
info-publish-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
info-publish-platform
Commits
8432a1f3
Commit
8432a1f3
authored
Dec 05, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改附件地址
parent
ce8ac722
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
9 deletions
+44
-9
doc/~$息发布系统 .docx
doc/~$息发布系统 .docx
+0
-0
doc/~WRL1993.tmp
doc/~WRL1993.tmp
+0
-0
info-publish-manager-ui/admin/src/components/FileUpload.vue
info-publish-manager-ui/admin/src/components/FileUpload.vue
+1
-1
info-publish-manager-ui/admin/src/components/ImageUpload.vue
info-publish-manager-ui/admin/src/components/ImageUpload.vue
+1
-1
info-publish-manager/src/main/java/com/mortals/xhx/module/device/model/vo/DeviceVo.java
...java/com/mortals/xhx/module/device/model/vo/DeviceVo.java
+20
-7
info-publish-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceServiceImpl.java
...als/xhx/module/device/service/impl/DeviceServiceImpl.java
+22
-0
No files found.
doc/~$息发布系统 .docx
deleted
100644 → 0
View file @
ce8ac722
File deleted
doc/~WRL1993.tmp
deleted
100644 → 0
View file @
ce8ac722
File deleted
info-publish-manager-ui/admin/src/components/FileUpload.vue
View file @
8432a1f3
...
@@ -103,7 +103,7 @@ export default {
...
@@ -103,7 +103,7 @@ export default {
return
{
return
{
number
:
0
,
number
:
0
,
uploadList
:
[],
uploadList
:
[],
uploadFileUrl
:
"
/
office
/file/commonupload
"
,
// 上传的地址
uploadFileUrl
:
"
/
infopublish
/file/commonupload
"
,
// 上传的地址
headers
:
{},
headers
:
{},
fileList
:
[],
fileList
:
[],
};
};
...
...
info-publish-manager-ui/admin/src/components/ImageUpload.vue
View file @
8432a1f3
...
@@ -42,7 +42,7 @@ export default {
...
@@ -42,7 +42,7 @@ export default {
data
()
{
data
()
{
return
{
return
{
dialogVisible
:
false
,
dialogVisible
:
false
,
uploadImgUrl
:
"
/
office
/file/commonupload
"
,
// 上传的图片服务器地址
uploadImgUrl
:
"
/
infopublish
/file/commonupload
"
,
// 上传的图片服务器地址
};
};
},
},
props
:
{
props
:
{
...
...
info-publish-manager/src/main/java/com/mortals/xhx/module/device/model/vo/DeviceVo.java
View file @
8432a1f3
package
com.mortals.xhx.module.device.model.vo
;
package
com.mortals.xhx.module.device.model.vo
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
import
com.mortals.xhx.module.device.model.DeviceEntity
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
com.mortals.xhx.module.device.model.DeviceFileEntity
;
import
com.mortals.xhx.module.device.model.DeviceWorkmanEntity
;
import
lombok.Data
;
import
lombok.Data
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.annotation.Excel
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.Date
;
/**
/**
* 设备管理视图对象
* 设备管理视图对象
*
*
* @author zxfei
* @author zxfei
* @date 2023-12-04
* @date 2023-12-04
*/
*/
@Data
@Data
public
class
DeviceVo
extends
BaseEntityLong
{
public
class
DeviceVo
extends
BaseEntityLong
{
/** 主键ID,主键,自增长列表 */
/**
private
List
<
Long
>
idList
;
* 主键ID,主键,自增长列表
*/
private
List
<
Long
>
idList
;
/**
/**
* 多个逗号分割
* 多个逗号分割
...
@@ -29,4 +38,8 @@ public class DeviceVo extends BaseEntityLong {
...
@@ -29,4 +38,8 @@ public class DeviceVo extends BaseEntityLong {
*/
*/
private
Integer
scrollNum
;
private
Integer
scrollNum
;
private
List
<
DeviceFileEntity
>
deviceFileEntityList
;
private
List
<
DeviceWorkmanEntity
>
deviceWorkmanEntityList
;
}
}
\ No newline at end of file
info-publish-manager/src/main/java/com/mortals/xhx/module/device/service/impl/DeviceServiceImpl.java
View file @
8432a1f3
...
@@ -112,4 +112,26 @@ public class DeviceServiceImpl extends AbstractCRUDCacheServiceImpl<DeviceDao, D
...
@@ -112,4 +112,26 @@ public class DeviceServiceImpl extends AbstractCRUDCacheServiceImpl<DeviceDao, D
String
token
=
rest
.
getData
();
String
token
=
rest
.
getData
();
return
token
;
return
token
;
}
}
@Override
protected
void
saveAfter
(
DeviceEntity
entity
,
Context
context
)
throws
AppException
{
super
.
saveAfter
(
entity
,
context
);
}
@Override
protected
void
updateAfter
(
DeviceEntity
entity
,
Context
context
)
throws
AppException
{
if
(!
ObjectUtils
.
isEmpty
(
entity
.
getDeviceWorkmanEntityList
()))
{
}
if
(!
ObjectUtils
.
isEmpty
(
entity
.
getDeviceFileEntityList
()))
{
}
}
@Override
protected
void
removeAfter
(
Long
[]
ids
,
Context
context
,
int
result
)
throws
AppException
{
super
.
removeAfter
(
ids
,
context
,
result
);
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment