Commit 05cd99d1 authored by 赵啸非's avatar 赵啸非

添加材料排序

parent 4aa06402
Pipeline #2619 failed with stages
package com.mortals.xhx.daemon.task;
import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSON;
import com.mortals.framework.common.Rest;
import com.mortals.framework.exception.AppException;
......@@ -159,6 +160,10 @@ public class SyncSiteDeviceTaskImpl implements ITaskExcuteService {
List<SkinEntity> newSkinList = skinBasePduList.stream().map(newSkin -> {
SkinEntity skinEntity = new SkinEntity();
skinEntity.initAttrValue();
newSkin.setCssFilePath("/"+StrUtil.subAfter(newSkin.getCssFilePath(), "/", true));
newSkin.setPreviewImagePath("/"+StrUtil.subAfter(newSkin.getPreviewImagePath(), "/", true));
BeanUtils.copyProperties(newSkin, skinEntity, BeanUtil.getNullPropertyNames(newSkin));
return skinEntity;
}).collect(Collectors.toList());
......
......@@ -14,5 +14,9 @@
"portal": {
"baseUrl": "http://192.168.0.98:11072/zwfw",
"baseLogin": "http://192.168.0.98:11078/base"
},
"base-yibin": {
"baseUrl": "http://10.12.185.213:11078/fm"
}
}
\ No newline at end of file
......@@ -15,12 +15,11 @@ client.global.set("authToken", JSON.parse(response.body).data.token);
###事项申请材料业务列表
POST {{baseUrl}}/matter/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":100
"size":10
}
......
......@@ -53,6 +53,16 @@ Content-Type: application/json
"type": 1
}
###通知列表
POST {{baseUrl}}/param/list
Content-Type: application/json
{
"page": 1,
"size": 10
}
###通知详细
GET {{baseUrl}}/home/notice/info?id=14
Authorization: {{authToken}}
......
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