Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fill-system
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
廖旭伟
fill-system
Commits
40e59985
Commit
40e59985
authored
Nov 28, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
重构部分功能模块
parent
9212fec4
Pipeline
#2344
canceled with stages
Changes
16
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
433 additions
and
448 deletions
+433
-448
fill-manager/src/main/java/com/mortals/xhx/module/matter/service/impl/MatterDatumServiceImpl.java
...hx/module/matter/service/impl/MatterDatumServiceImpl.java
+12
-4
fill-manager/src/test/java/com/mortals/httpclient/area/AreaController.http
...test/java/com/mortals/httpclient/area/AreaController.http
+0
-54
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerController.http
...a/com/mortals/httpclient/customer/CustomerController.http
+0
-56
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerTrialController.http
.../mortals/httpclient/customer/CustomerTrialController.http
+0
-46
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerWorkDesignController.http
...als/httpclient/customer/CustomerWorkDesignController.http
+0
-45
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerWorkDesignStatController.http
...httpclient/customer/CustomerWorkDesignStatController.http
+0
-46
fill-manager/src/test/java/com/mortals/httpclient/design/DesignMasterplateController.http
...ortals/httpclient/design/DesignMasterplateController.http
+0
-54
fill-manager/src/test/java/com/mortals/httpclient/font/FontMaterialController.http
...a/com/mortals/httpclient/font/FontMaterialController.http
+0
-46
fill-manager/src/test/java/com/mortals/httpclient/http-client.env.json
...src/test/java/com/mortals/httpclient/http-client.env.json
+18
-0
fill-manager/src/test/java/com/mortals/httpclient/masterplate/MasterplateUseInfoController.http
.../httpclient/masterplate/MasterplateUseInfoController.http
+0
-48
fill-manager/src/test/java/com/mortals/httpclient/matter/MatterController.http
.../java/com/mortals/httpclient/matter/MatterController.http
+72
-0
fill-manager/src/test/java/com/mortals/httpclient/matter/MatterDatumController.http
.../com/mortals/httpclient/matter/MatterDatumController.http
+69
-0
fill-manager/src/test/java/com/mortals/httpclient/picture/PictureMaterialController.http
...mortals/httpclient/picture/PictureMaterialController.http
+0
-49
fill-manager/src/test/java/com/mortals/httpclient/public/PublicDatumController.http
.../com/mortals/httpclient/public/PublicDatumController.http
+67
-0
fill-manager/src/test/java/com/mortals/httpclient/sheet/SheetMatterController.http
...a/com/mortals/httpclient/sheet/SheetMatterController.http
+152
-0
fill-manager/src/test/java/com/mortals/httpclient/system.http
...-manager/src/test/java/com/mortals/httpclient/system.http
+43
-0
No files found.
fill-manager/src/main/java/com/mortals/xhx/module/matter/service/impl/MatterDatumServiceImpl.java
View file @
40e59985
...
@@ -101,10 +101,6 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
...
@@ -101,10 +101,6 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
@Override
@Override
protected
void
updateBefore
(
MatterDatumEntity
entity
,
Context
context
)
throws
AppException
{
protected
void
updateBefore
(
MatterDatumEntity
entity
,
Context
context
)
throws
AppException
{
super
.
updateBefore
(
entity
,
context
);
super
.
updateBefore
(
entity
,
context
);
}
}
...
@@ -440,6 +436,18 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
...
@@ -440,6 +436,18 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
}
}
@Override
protected
void
findAfter
(
MatterDatumEntity
params
,
PageInfo
pageInfo
,
Context
context
,
List
<
MatterDatumEntity
>
list
)
throws
AppException
{
list
.
stream
().
forEach
(
entity
->{
MatterEntity
matterEntity
=
matterService
.
get
(
entity
.
getMatterId
(),
context
);
if
(!
ObjectUtils
.
isEmpty
(
matterEntity
)){
entity
.
setMatterNo
(
matterEntity
.
getMatterNo
());
entity
.
setMatterName
(
matterEntity
.
getMatterName
());
}
});
super
.
findAfter
(
params
,
pageInfo
,
context
,
list
);
}
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
String
colVal
=
"i_1_变更登记事项"
;
String
colVal
=
"i_1_变更登记事项"
;
List
<
String
>
colKeys
=
StrSplitter
.
split
(
colVal
,
"_"
,
true
,
true
);
List
<
String
>
colKeys
=
StrSplitter
.
split
(
colVal
,
"_"
,
true
,
true
);
...
...
fill-manager/src/test/java/com/mortals/httpclient/area/AreaController.http
deleted
100644 → 0
View file @
9212fec4
###区域信息业务列表
POST {{baseUrl}}/area/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###区域信息业务更新与保存
POST {{baseUrl}}/area/save
Authorization: {{authToken}}
Content-Type: application/json
{
"parentId":639,
"name":"ez8nxc",
"level":13,
"code":"e3523t",
"contactsPeople":"8pc94h",
"contactsMobile":"5hvxq1",
"childSize":0,
"maxChildId":0,
"status":1,
"remark":"y69vog",
"createUserName":"4lzf1e"
}
> {%
client.global.set("Area_id", JSON.parse(response.body).data.id);
%}
###区域信息业务查看
GET {{baseUrl}}/area/info?id={{Area_id}}
Authorization: {{authToken}}
Accept: application/json
###区域信息业务编辑
GET {{baseUrl}}/area/edit?id={{Area_id}}
Authorization: {{authToken}}
Accept: application/json
###区域信息业务删除
GET {{baseUrl}}/area/delete?id={{Area_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerController.http
deleted
100644 → 0
View file @
9212fec4
###客户管理列表
POST {{baseUrl}}/customer/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###客户管理更新与保存
POST {{baseUrl}}/customer/save
Authorization: {{authToken}}
Content-Type: application/json
{
"loginName":"9xxb6r",
"password":"fqbjaa",
"memberLevel":801,
"custName":"u7h5zz",
"organization":"aoptax",
"contactTelphone":"saa692",
"enterpriseConsultant":"fks4w4",
"siteId":721,
"sex":408,
"mailbox":"e5ika0",
"job":"yo6ouo",
"customerSrc":297,
"status":909,
}
> {%
client.global.set("Customer_id", JSON.parse(response.body).data.id);
%}
###客户管理查看
GET {{baseUrl}}/customer/info?id={{Customer_id}}
Authorization: {{authToken}}
Accept: application/json
###客户管理编辑
GET {{baseUrl}}/customer/edit?id={{Customer_id}}
Authorization: {{authToken}}
Accept: application/json
###客户管理删除
GET {{baseUrl}}/customer/delete?id={{Customer_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerTrialController.http
deleted
100644 → 0
View file @
9212fec4
###客户试用申请列表
POST {{baseUrl}}/customer/trial/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###客户试用申请更新与保存
POST {{baseUrl}}/customer/trial/save
Authorization: {{authToken}}
Content-Type: application/json
{
"customerId":401,
"memberLevel":589,
"isAccept":109,
}
> {%
client.global.set("CustomerTrial_id", JSON.parse(response.body).data.id);
%}
###客户试用申请查看
GET {{baseUrl}}/customer/trial/info?id={{CustomerTrial_id}}
Authorization: {{authToken}}
Accept: application/json
###客户试用申请编辑
GET {{baseUrl}}/customer/trial/edit?id={{CustomerTrial_id}}
Authorization: {{authToken}}
Accept: application/json
###客户试用申请删除
GET {{baseUrl}}/customer/trial/delete?id={{CustomerTrial_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerWorkDesignController.http
deleted
100644 → 0
View file @
9212fec4
###客户作品信息列表
POST {{baseUrl}}/customer/work/design/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###客户作品信息更新与保存
POST {{baseUrl}}/customer/work/design/save
Authorization: {{authToken}}
Content-Type: application/json
{
"customerId":id,
"masterplateId":125
}
> {%
client.global.set("CustomerWorkDesign_id", JSON.parse(response.body).data.id);
%}
###客户作品信息查看
GET {{baseUrl}}/customer/work/design/info?id={{CustomerWorkDesign_id}}
Authorization: {{authToken}}
Accept: application/json
###客户作品信息编辑
GET {{baseUrl}}/customer/work/design/edit?id={{CustomerWorkDesign_id}}
Authorization: {{authToken}}
Accept: application/json
###客户作品信息删除
GET {{baseUrl}}/customer/work/design/delete?id={{CustomerWorkDesign_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/customer/CustomerWorkDesignStatController.http
deleted
100644 → 0
View file @
9212fec4
###客户作品统计列表
POST {{baseUrl}}/customer/work/design/stat/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###客户作品统计更新与保存
POST {{baseUrl}}/customer/work/design/stat/save
Authorization: {{authToken}}
Content-Type: application/json
{
"customerId":id,
"customerDesignPictures":964,
"customerDesignVideos":67,
}
> {%
client.global.set("CustomerWorkDesignStat_id", JSON.parse(response.body).data.id);
%}
###客户作品统计查看
GET {{baseUrl}}/customer/work/design/stat/info?id={{CustomerWorkDesignStat_id}}
Authorization: {{authToken}}
Accept: application/json
###客户作品统计编辑
GET {{baseUrl}}/customer/work/design/stat/edit?id={{CustomerWorkDesignStat_id}}
Authorization: {{authToken}}
Accept: application/json
###客户作品统计删除
GET {{baseUrl}}/customer/work/design/stat/delete?id={{CustomerWorkDesignStat_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/design/DesignMasterplateController.http
deleted
100644 → 0
View file @
9212fec4
###模版管理列表
POST {{baseUrl}}/design/masterplate/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###模版管理更新与保存
POST {{baseUrl}}/design/masterplate/save
Authorization: {{authToken}}
Content-Type: application/json
{
"masterplateName":91,
"masterplateCode":499,
"customerId":256,
"customerName":"dunodk",
"masterplateDesc":"gjpx7r",
"masterplatePath":"inoxbh",
"pictureId":615,
"pictureSrcId":416,
"pictureBackgroundId":448,
"fontId":607,
"masterplateUseNum":163
}
> {%
client.global.set("DesignMasterplate_id", JSON.parse(response.body).data.id);
%}
###模版管理查看
GET {{baseUrl}}/design/masterplate/info?id={{DesignMasterplate_id}}
Authorization: {{authToken}}
Accept: application/json
###模版管理编辑
GET {{baseUrl}}/design/masterplate/edit?id={{DesignMasterplate_id}}
Authorization: {{authToken}}
Accept: application/json
###模版管理删除
GET {{baseUrl}}/design/masterplate/delete?id={{DesignMasterplate_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/font/FontMaterialController.http
deleted
100644 → 0
View file @
9212fec4
###字体素材列表
POST {{baseUrl}}/font/material/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###字体素材更新与保存
POST {{baseUrl}}/font/material/save
Authorization: {{authToken}}
Content-Type: application/json
{
"fontName":"id",
"fontDesc":"v2ewbc",
"fontPath":"q9avgb"
}
> {%
client.global.set("FontMaterial_id", JSON.parse(response.body).data.id);
%}
###字体素材查看
GET {{baseUrl}}/font/material/info?id={{FontMaterial_id}}
Authorization: {{authToken}}
Accept: application/json
###字体素材编辑
GET {{baseUrl}}/font/material/edit?id={{FontMaterial_id}}
Authorization: {{authToken}}
Accept: application/json
###字体素材删除
GET {{baseUrl}}/font/material/delete?id={{FontMaterial_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/http-client.env.json
0 → 100644
View file @
40e59985
{
"local"
:
{
"baseUrl"
:
"http://127.0.0.1:17215/fm"
,
"baseLogin"
:
"http://127.0.0.1:18222/m"
},
"dev"
:
{
"baseUrl"
:
"http://192.168.0.217:17215/sampleform"
,
"baseLogin"
:
"http://192.168.0.98:11078/base"
},
"test"
:
{
"baseUrl"
:
"http://192.168.0.98:11078/fm"
,
"baseLogin"
:
"http://192.168.0.98:11078/fm"
},
"portal"
:
{
"baseUrl"
:
"http://192.168.0.98:11072/zwfw"
,
"baseLogin"
:
"http://192.168.0.98:11078/base"
}
}
\ No newline at end of file
fill-manager/src/test/java/com/mortals/httpclient/masterplate/MasterplateUseInfoController.http
deleted
100644 → 0
View file @
9212fec4
###模版使用信息列表
POST {{baseUrl}}/masterplate/use/info/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###模版使用信息更新与保存
POST {{baseUrl}}/masterplate/use/info/save
Authorization: {{authToken}}
Content-Type: application/json
{
"masterplateId":176,
"customerId":481,
"customerName":"o6crnh",
"customerTelphone":"3rdsks",
"customerOrganization":"lwv68g"
}
> {%
client.global.set("MasterplateUseInfo_id", JSON.parse(response.body).data.id);
%}
###模版使用信息查看
GET {{baseUrl}}/masterplate/use/info/info?id={{MasterplateUseInfo_id}}
Authorization: {{authToken}}
Accept: application/json
###模版使用信息编辑
GET {{baseUrl}}/masterplate/use/info/edit?id={{MasterplateUseInfo_id}}
Authorization: {{authToken}}
Accept: application/json
###模版使用信息删除
GET {{baseUrl}}/masterplate/use/info/delete?id={{MasterplateUseInfo_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/matter/MatterController.http
0 → 100644
View file @
40e59985
###登录
POST {{baseUrl}}/login/login
Content-Type: application/json
{
"loginName":"admin",
"password":"admin",
"securityCode":"8888"
}
> {%
client.global.set("SmsSet_id", JSON.parse(response.body).data.id);
client.global.set("authToken", JSON.parse(response.body).data.token);
%}
###事项申请材料业务列表
POST {{baseUrl}}/matter/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":100
}
###事项申请材料业务更新与保存
POST {{baseUrl}}/matter/save
Authorization: {{authToken}}
Content-Type: application/json
{
"siteId":22,
"tid":"k1uco3",
"tcode":"xqvyg4",
"tname":"8su8s8",
"matterName":"nf9lyb",
"englishName":"r0zlt3",
"matterNo":"fcz9v4",
"matterFullName":"i03tzi",
"deptId":35,
"deptCode":"6lmjlo",
"deptName":"a1gsql",
"total":0,
"sort":0,
"isRecommend":0,
"source":0,
}
> {%
client.global.set("Matter_id", JSON.parse(response.body).data.id);
%}
###事项申请材料业务查看
GET {{baseUrl}}/matter/info?id={{Matter_id}}
Authorization: {{authToken}}
Accept: application/json
###事项申请材料业务编辑
GET {{baseUrl}}/matter/edit?id={{Matter_id}}
Authorization: {{authToken}}
Accept: application/json
###事项申请材料业务删除
GET {{baseUrl}}/matter/delete?id={{Matter_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/matter/MatterDatumController.http
0 → 100644
View file @
40e59985
###登录
POST {{baseUrl}}/login/login
Content-Type: application/json
{
"loginName":"admin",
"password":"admin",
"securityCode":"8888"
}
> {%
client.global.set("SmsSet_id", JSON.parse(response.body).data.id);
client.global.set("authToken", JSON.parse(response.body).data.token);
%}
###事项申请材料业务列表
POST {{baseUrl}}/matter/datum/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###事项申请材料业务更新与保存
POST {{baseUrl}}/matter/datum/save
Authorization: {{authToken}}
Content-Type: application/json
{
"matterId":719,
"deptId":818,
"deptCode":"h9g0zo",
"materialName":"dr3fuz",
"materiaFullName":"rf8gue",
"source":0,
"isRecommend":0,
"total":0,
"sort":0,
"sampleName":"qysz6s",
"samplePath":"igktwv",
"preViewPath":"b2rk0s",
}
> {%
client.global.set("MatterDatum_id", JSON.parse(response.body).data.id);
%}
###事项申请材料业务查看
GET {{baseUrl}}/matter/datum/info?id={{MatterDatum_id}}
Authorization: {{authToken}}
Accept: application/json
###事项申请材料业务编辑
GET {{baseUrl}}/matter/datum/edit?id={{MatterDatum_id}}
Authorization: {{authToken}}
Accept: application/json
###事项申请材料业务删除
GET {{baseUrl}}/matter/datum/delete?id={{MatterDatum_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/picture/PictureMaterialController.http
deleted
100644 → 0
View file @
9212fec4
###图片素材列表
POST {{baseUrl}}/picture/material/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###图片素材更新与保存
POST {{baseUrl}}/picture/material/save
Authorization: {{authToken}}
Content-Type: application/json
{
"pictureName":"id",
"pictureGroupId":819,
"pictureClassifyId":183,
"pictureDesc":"2pzzjg",
"picturePath":"otdggp",
"pictureType":191
}
> {%
client.global.set("PictureMaterial_id", JSON.parse(response.body).data.id);
%}
###图片素材查看
GET {{baseUrl}}/picture/material/info?id={{PictureMaterial_id}}
Authorization: {{authToken}}
Accept: application/json
###图片素材编辑
GET {{baseUrl}}/picture/material/edit?id={{PictureMaterial_id}}
Authorization: {{authToken}}
Accept: application/json
###图片素材删除
GET {{baseUrl}}/picture/material/delete?id={{PictureMaterial_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/public/PublicDatumController.http
0 → 100644
View file @
40e59985
###登录
POST {{baseUrl}}/login/login
Content-Type: application/json
{
"loginName":"admin",
"password":"admin",
"securityCode":"8888"
}
> {%
client.global.set("SmsSet_id", JSON.parse(response.body).data.id);
client.global.set("authToken", JSON.parse(response.body).data.token);
%}
###事项材料公共库列表
POST {{baseUrl}}/public/datum/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###事项材料公共库更新与保存
POST {{baseUrl}}/public/datum/save
Authorization: {{authToken}}
Content-Type: application/json
{
"matterId":483,
"deptId":930,
"deptCode":"mo178z",
"materialName":"nwnkcf",
"materiaFullName":"bhl37z",
"total":107,
"sort":45,
"sampleName":"xtlvr9",
"samplePath":"ehlknm",
"preViewPath":"2hkvj4",
}
> {%
client.global.set("PublicDatum_id", JSON.parse(response.body).data.id);
%}
###事项材料公共库查看
GET {{baseUrl}}/public/datum/info?id={{PublicDatum_id}}
Authorization: {{authToken}}
Accept: application/json
###事项材料公共库编辑
GET {{baseUrl}}/public/datum/edit?id={{PublicDatum_id}}
Authorization: {{authToken}}
Accept: application/json
###事项材料公共库删除
GET {{baseUrl}}/public/datum/delete?id={{PublicDatum_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/sheet/SheetMatterController.http
0 → 100644
View file @
40e59985
###登录
POST {{baseUrl}}/login/login
Content-Type: application/json
{
"loginName":"admin",
"password":"admin",
"securityCode":"8888"
}
> {%
client.global.set("SmsSet_id", JSON.parse(response.body).data.id);
client.global.set("authToken", JSON.parse(response.body).data.token);
%}
###基础事项业务列表
POST {{baseUrl}}/sheet/matter/list
Authorization: {{authToken}}
Content-Type: application/json
{
"page":1,
"size":10
}
###基础事项业务更新与保存
POST {{baseUrl}}/sheet/matter/save
Authorization: {{authToken}}
Content-Type: application/json
{
"siteId":839,
"tid":"p1k6f5",
"tcode":"lva553",
"tname":"hv4zzs",
"matterName":"ou0xun",
"englishName":"3vfyho",
"matterNo":"6wo5wb",
"appoveObjectShow":"1",
"operatScopeShow":"1",
"appoveTimeLimitShow":"1",
"handleType":"1",
"legalTimeLimitShow":"fzyl0o",
"legalEndExplain":"6x565a",
"promiseTimeLimitShow":"ckzm1e",
"promiseEndExplain":"svvg7h",
"isChargesShow":"0",
"certificationLevelsShow":"1",
"planTakeTime":"1668009600000",
"promiseTakeTime":"1668009600000",
"specialProcedure":"aggac3",
"windowToTheSceneNum":587,
"isOnlineSubscribeShow":"0",
"isExpressTakeShow":"0",
"isProvinceAcquisitionShow":"0",
"isApplyProvinceShow":"0",
"mustSceneExplain":"saq8ej",
"onlineType":"1",
"onlineToTheSceneNum":788,
"onlineOperatDeep":"elstlh",
"isExpressTakeOnlineShow":"t0qigd",
"isDoorTakeShow":"i53rg1",
"onlineMustSceneExplain":"vivnwc",
"performDeptType":"d7uuhc",
"matterEdition":"khebs6",
"eventTypeShow":"1A",
"performHierarchyShow":"0tpunx",
"powerSourceShow":"1y4tcv",
"performDeptTypeShow":"uqm7qj",
"goveServiceCenterShow":"1",
"isConvenientCenterShow":"1",
"terminalHandle":1,
"isOnline":1,
"isOnlinePayShow":"1",
"entrustmentDepartmen":"1",
"jointInfoShow":"e38ewa",
"matterStatus":"1",
"numberLimit":262,
"type":"1",
"baseCode":"3a6a3i",
"implementCode":"om4nj3",
"implementBodyCode":"3vtx8h",
"operateItemCode":"s18fr9",
"townshipName":"u2rzw6",
"townshipCode":"0rxwnt",
"villageName":"tksrv1",
"villageCode":"prx2de",
"operateTime":"5d8sdb",
"operateSite":"hm69ct",
"cousultingShow":"jd1x4a",
"cousultingTelephoneShow":"bm85k3",
"superviseShow":"wgkkbi",
"mattertype":1,
"deptCode":"ffmj1r",
"dirListCode":"jirkn5",
"runSystemShow":"n6mbc1",
"jointReviewInfoShow":"8s1r54",
"doThingTypeShow":"jhywzx",
"pubTimeShow":"p63yv4",
"supervisoryTelephoneShow":"lshpw0",
"handleTimeShow":"vlep5a",
"handlePlaceShow":"ehtgme",
"daysTypeShow":"s3puw4",
"tradeShow":"hp7fni",
"eventSourceShow":"lz7phc",
"applyresultTypeShow":"wz08hi",
"typeOfReview":"e56dxj",
"enforcement":"zlkymk",
"serviceClassification":"jh3a14",
"licenseNumber":"982hbs",
"number":600,
"inquire":"ecz7wn",
"handlingresultNames":"6smu7p",
"sampleApprovalResults":"nfdj2m",
"performDeptName":"2zwvgx",
"html":"vtndkm",
"eventType":"pyl8qm",
"shardKey":369,
"parson":172,
"lengal":745,
"materialRemark":"jiama1",
"codeurl":"jjkaek",
"applyObject":"13gl2q",
"isUniteAccept":"q3phnc",
"sort":494,
"isRecommend":0,
}
> {%
client.global.set("SheetMatter_id", JSON.parse(response.body).data.id);
%}
###基础事项业务查看
GET {{baseUrl}}/sheet/matter/info?id={{SheetMatter_id}}
Authorization: {{authToken}}
Accept: application/json
###基础事项业务编辑
GET {{baseUrl}}/sheet/matter/edit?id={{SheetMatter_id}}
Authorization: {{authToken}}
Accept: application/json
###基础事项业务删除
GET {{baseUrl}}/sheet/matter/delete?id={{SheetMatter_id}}
Authorization: {{authToken}}
Accept: application/json
fill-manager/src/test/java/com/mortals/httpclient/system.http
0 → 100644
View file @
40e59985
###登录
POST {{baseUrl}}/login/login
Content-Type: application/json
{
"loginName":"admin",
"password":"admin"
}
> {%
client.global.set("SmsSet_id", JSON.parse(response.body).data.id);
client.global.set("authToken", JSON.parse(response.body).data.token);
%}
###首页
POST {{baseUrl}}/login/index
Authorization: {{authToken}}
Content-Type: application/json
{}
###站点树
GET {{baseUrl}}/site/siteTree
Authorization: {{authToken}}
Content-Type: application/json
{}
###添加
GET {{baseUrl}}/matter/createMatter?ids=37,38,39&siteId=1
Authorization: {{authToken}}
Accept: application/json
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