Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
0fd710fa
Commit
0fd710fa
authored
Nov 30, 2023
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
企业维护增加涉及设备类型:气瓶(2300)
parent
e9b39316
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
15 deletions
+31
-15
EquipmentClassifityEnum.java
...os/boot/module/tcm/api/enums/EquipmentClassifityEnum.java
+4
-1
IEquipmentCategoryService.java
...oot/module/tcm/api/service/IEquipmentCategoryService.java
+20
-14
EquipmentCategoryController.java
...odule/tcm/biz/controller/EquipmentCategoryController.java
+0
-0
EquipmentCategoryServiceImpl.java
...le/tcm/biz/service/impl/EquipmentCategoryServiceImpl.java
+0
-0
equipCategory.json
...module-tcm-biz/src/main/resources/json/equipCategory.json
+7
-0
No files found.
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/java/com/yeejoin/amos/boot/module/tcm/api/enums/EquipmentClassifityEnum.java
View file @
0fd710fa
...
@@ -26,7 +26,10 @@ public enum EquipmentClassifityEnum {
...
@@ -26,7 +26,10 @@ public enum EquipmentClassifityEnum {
//设备认领状态
//设备认领状态
SBRLZT
(
"设备认领状态"
,
"rlzt"
),
SBRLZT
(
"设备认领状态"
,
"rlzt"
),
BDLS
(
"八大类树"
,
"eightCategory"
),
BDLS
(
"八大类树"
,
"eightCategory"
),
RENLING
(
"其他"
,
"other"
);
RENLING
(
"其他"
,
"other"
),
CYLINDER
(
"气瓶"
,
"cylinder"
);
private
String
name
;
private
String
name
;
private
String
code
;
private
String
code
;
public
static
Map
<
String
,
String
>
getName
=
new
HashMap
<>();
public
static
Map
<
String
,
String
>
getName
=
new
HashMap
<>();
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/java/com/yeejoin/amos/boot/module/tcm/api/service/IEquipmentCategoryService.java
View file @
0fd710fa
...
@@ -17,30 +17,36 @@ import java.util.Map;
...
@@ -17,30 +17,36 @@ import java.util.Map;
*/
*/
public
interface
IEquipmentCategoryService
{
public
interface
IEquipmentCategoryService
{
List
<
Map
<
String
,
Object
>>
equipTree
(
String
type
);
List
<
Map
<
String
,
Object
>>
equipTree
(
String
type
);
Page
equipClaimOverview
();
Page
equipClaimOverview
();
Map
<
String
,
String
>
createSupervisorCode
(
Map
<
String
,
Object
>
map
,
String
record
);
Map
<
String
,
String
>
createSupervisorCode
(
Map
<
String
,
Object
>
map
,
String
record
);
List
<
LinkedHashMap
>
getTree
();
List
<
LinkedHashMap
>
getTree
();
List
<
LinkedHashMap
>
creatTree
();
List
<
LinkedHashMap
>
getRegion
(
String
level
,
String
parentId
);
List
<
LinkedHashMap
>
creatTree
(
);
Map
<
String
,
Object
>
getCategoryAndDefineByRecord
(
String
row
Id
);
List
<
LinkedHashMap
>
getRegion
(
String
level
,
String
parent
Id
);
List
<
CategoryOtherInfo
>
checkCode
(
Map
<
String
,
Object
>
obj
);
Map
<
String
,
Object
>
getCategoryAndDefineByRecord
(
String
rowId
);
List
<
String
>
updateOtherInfo
(
Map
<
String
,
Object
>
map
);
List
<
CategoryOtherInfo
>
checkCode
(
Map
<
String
,
Object
>
obj
);
Map
<
String
,
Map
<
String
,
Object
>>
getFormRecordById
(
Map
<
String
,
Object
>
map
);
List
<
String
>
updateOtherInfo
(
Map
<
String
,
Object
>
map
);
void
checkEsData
(
String
id
);
Map
<
String
,
Map
<
String
,
Object
>>
getFormRecordById
(
Map
<
String
,
Object
>
map
);
void
createEquipmentCategoryData
(
);
void
checkEsData
(
String
id
);
List
<
String
>
deleteBatch
(
Map
<
String
,
Object
>
map
);
void
createEquipmentCategoryData
(
);
ResponseModel
submit
(
Map
<
String
,
Object
>
map
);
List
<
String
>
deleteBatch
(
Map
<
String
,
Object
>
map
);
ResponseModel
submit
(
Map
<
String
,
Object
>
map
);
/**
* 企业设备树查询
*/
List
<
Map
<
String
,
Object
>>
unitEquipTree
();
}
}
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/controller/EquipmentCategoryController.java
View file @
0fd710fa
This diff is collapsed.
Click to expand it.
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/service/impl/EquipmentCategoryServiceImpl.java
View file @
0fd710fa
This source diff could not be displayed because it is too large. You can
view the blob
instead.
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/resources/json/equipCategory.json
View file @
0fd710fa
...
@@ -114,5 +114,11 @@
...
@@ -114,5 +114,11 @@
"name"
:
"客运索道"
,
"name"
:
"客运索道"
,
"code"
:
"9000"
"code"
:
"9000"
}
}
],
"cylinder"
:
[
{
"instanceName"
:
"气瓶"
,
"instanceId"
:
"2300"
}
]
]
}
}
\ 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