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
469da87d
Commit
469da87d
authored
Jul 10, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fact(综合搜索):数据同步调整
1.人员索引、企业索引设备类型增加名称字段
parent
d105c9aa
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
95 additions
and
37 deletions
+95
-37
EquipmentClassifityEnum.java
...boot/module/common/api/enums/EquipmentClassifityEnum.java
+64
-0
RefreshDataUtils.java
...n/amos/boot/module/common/biz/utils/RefreshDataUtils.java
+16
-0
StatisticsDataUpdateService.java
...ot/module/jg/biz/refresh/StatisticsDataUpdateService.java
+3
-30
DataHandlerServiceImpl.java
...ot/module/jg/biz/service/impl/DataHandlerServiceImpl.java
+10
-7
EnterpriseRefreshHandler.java
...ule/tcm/biz/refresh/handler/EnterpriseRefreshHandler.java
+1
-0
UserRefreshHandler.java
...ot/module/tcm/biz/refresh/handler/UserRefreshHandler.java
+1
-0
No files found.
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/enums/EquipmentClassifityEnum.java
0 → 100644
View file @
469da87d
package
com
.
yeejoin
.
amos
.
boot
.
module
.
common
.
api
.
enums
;
import
lombok.AllArgsConstructor
;
import
lombok.Getter
;
import
java.util.HashMap
;
import
java.util.Map
;
@AllArgsConstructor
@Getter
public
enum
EquipmentClassifityEnum
{
/**
* *设备分类
*/
GL
(
"锅炉"
,
"1000"
),
YLRQ
(
"压力容器"
,
"2000"
),
DT
(
"电梯"
,
"3000"
),
QZJX
(
"起重机械"
,
"4000"
),
CC
(
"场(厂)内专用机动车辆"
,
"5000"
),
YLSS
(
"大型游乐设施"
,
"6000"
),
YLGDYJ
(
"压力管道元件"
,
"7000"
),
YLGD
(
"压力管道"
,
"8000"
),
KYSD
(
"客运索道"
,
"9000"
),
//树类型
ZHTJFX
(
"综合统计分析"
,
"statistical"
),
//设备认领状态
SBRLZT
(
"设备认领状态"
,
"rlzt"
),
BDLS
(
"八大类树"
,
"eightCategory"
),
RENLING
(
"其他"
,
"other"
);
private
String
name
;
private
String
code
;
public
static
Map
<
String
,
String
>
getName
=
new
HashMap
<>();
public
static
Map
<
String
,
String
>
getCode
=
new
HashMap
<>();
static
{
for
(
EquipmentClassifityEnum
e
:
EquipmentClassifityEnum
.
values
())
{
getName
.
put
(
e
.
code
,
e
.
name
);
getCode
.
put
(
e
.
name
,
e
.
code
);
}
}
public
static
String
getNameByCode
(
String
code
)
{
for
(
EquipmentClassifityEnum
value
:
EquipmentClassifityEnum
.
values
())
{
if
(
value
.
getCode
().
equals
(
code
))
{
return
value
.
getName
();
}
}
return
""
;
}
public
static
EquipmentClassifityEnum
getOne
(
String
code
)
{
for
(
EquipmentClassifityEnum
value
:
EquipmentClassifityEnum
.
values
())
{
if
(
value
.
getCode
().
equals
(
code
))
{
return
value
;
}
}
return
null
;
}
}
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-biz/src/main/java/com/yeejoin/amos/boot/module/common/biz/utils/RefreshDataUtils.java
View file @
469da87d
package
com
.
yeejoin
.
amos
.
boot
.
module
.
common
.
biz
.
utils
;
package
com
.
yeejoin
.
amos
.
boot
.
module
.
common
.
biz
.
utils
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSON
;
import
com.yeejoin.amos.boot.module.common.api.enums.EquipmentClassifityEnum
;
import
java.util.ArrayList
;
import
java.util.HashSet
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Set
;
public
class
RefreshDataUtils
{
public
class
RefreshDataUtils
{
...
@@ -32,4 +36,16 @@ public class RefreshDataUtils {
...
@@ -32,4 +36,16 @@ public class RefreshDataUtils {
public
static
boolean
isNullOrEmpty
(
String
str
)
{
public
static
boolean
isNullOrEmpty
(
String
str
)
{
return
str
==
null
||
str
.
trim
().
isEmpty
()
||
"null"
.
equals
(
str
);
return
str
==
null
||
str
.
trim
().
isEmpty
()
||
"null"
.
equals
(
str
);
}
}
public
static
String
castEquCategory2Name
(
String
equipTypes
)
{
Set
<
String
>
names
=
new
HashSet
<>();
if
(!
isNullOrEmpty
(
equipTypes
)){
for
(
String
equipType
:
equipTypes
.
split
(
","
))
{
names
.
add
(
EquipmentClassifityEnum
.
getNameByCode
(
equipType
));
}
}
names
.
remove
(
""
);
return
String
.
join
(
","
,
names
);
}
}
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/refresh/StatisticsDataUpdateService.java
View file @
469da87d
...
@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSON;
...
@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSON;
import
com.yeejoin.amos.boot.module.common.api.dto.ITechParamDefine
;
import
com.yeejoin.amos.boot.module.common.api.dto.ITechParamDefine
;
import
com.yeejoin.amos.boot.module.common.api.dto.TechParamItem
;
import
com.yeejoin.amos.boot.module.common.api.dto.TechParamItem
;
import
com.yeejoin.amos.boot.module.common.api.entity.ESEquipmentInfo
;
import
com.yeejoin.amos.boot.module.common.api.entity.ESEquipmentInfo
;
import
com.yeejoin.amos.boot.module.common.biz.utils.RefreshDataUtils
;
import
com.yeejoin.amos.boot.module.common.biz.utils.TechParamUtil
;
import
com.yeejoin.amos.boot.module.common.biz.utils.TechParamUtil
;
import
com.yeejoin.amos.boot.module.jg.biz.edit.backup.TechParamsBackupService
;
import
com.yeejoin.amos.boot.module.jg.biz.edit.backup.TechParamsBackupService
;
import
com.yeejoin.amos.boot.module.ymt.api.entity.IdxBizJgInspectionDetectionInfo
;
import
com.yeejoin.amos.boot.module.ymt.api.entity.IdxBizJgInspectionDetectionInfo
;
...
@@ -50,34 +51,6 @@ public class StatisticsDataUpdateService {
...
@@ -50,34 +51,6 @@ public class StatisticsDataUpdateService {
}
}
/**
* 判断字符串是否为合法的 JSON 格式
*/
public
static
boolean
isJSONValid
(
String
test
)
{
try
{
JSON
.
parseArray
(
test
);
return
true
;
}
catch
(
Exception
ex
)
{
return
false
;
}
}
public
static
String
castStrList2String
(
String
jsonTypesStr
)
{
if
(!
isNullOrEmpty
(
jsonTypesStr
))
{
if
(
isJSONValid
(
jsonTypesStr
))
{
List
<
String
>
posts
=
JSON
.
parseArray
(
jsonTypesStr
,
String
.
class
);
return
String
.
join
(
","
,
posts
);
}
return
jsonTypesStr
;
}
return
null
;
}
public
static
boolean
isNullOrEmpty
(
String
str
)
{
return
str
==
null
||
str
.
trim
().
isEmpty
()
||
"null"
.
equals
(
str
);
}
public
static
void
formatUseDate
(
Map
<
String
,
Object
>
detail
)
{
public
static
void
formatUseDate
(
Map
<
String
,
Object
>
detail
)
{
if
(
detail
.
containsKey
(
USE_DATE_KEY
)
&&
detail
.
get
(
USE_DATE_KEY
)
!=
null
)
{
if
(
detail
.
containsKey
(
USE_DATE_KEY
)
&&
detail
.
get
(
USE_DATE_KEY
)
!=
null
)
{
if
(
detail
.
get
(
USE_DATE_KEY
).
toString
().
isEmpty
()
||
detail
.
get
(
USE_DATE_KEY
).
toString
().
equals
(
"null"
))
{
if
(
detail
.
get
(
USE_DATE_KEY
).
toString
().
isEmpty
()
||
detail
.
get
(
USE_DATE_KEY
).
toString
().
equals
(
"null"
))
{
...
@@ -98,12 +71,12 @@ public class StatisticsDataUpdateService {
...
@@ -98,12 +71,12 @@ public class StatisticsDataUpdateService {
public
static
void
formatInspectDate
(
ESEquipmentInfo
esEquipmentInfo
,
IdxBizJgInspectionDetectionInfo
inspectionDetectionInfo
,
String
record
)
{
public
static
void
formatInspectDate
(
ESEquipmentInfo
esEquipmentInfo
,
IdxBizJgInspectionDetectionInfo
inspectionDetectionInfo
,
String
record
)
{
try
{
try
{
esEquipmentInfo
.
setINSPECT_DATE
(
inspectionDetectionInfo
.
getSequenceNbr
()
!=
null
?
inspectionDetectionInfo
.
getInspectDate
()
!=
null
?
inspectionDetectionInfo
.
getInspectDate
().
toInstant
().
atZone
(
ZoneId
.
systemDefault
()).
toLocalDate
()
:
null
:
null
);
esEquipmentInfo
.
setINSPECT_DATE
(
inspectionDetectionInfo
.
getSequenceNbr
()
!=
null
?
inspectionDetectionInfo
.
getInspectDate
()
!=
null
?
inspectionDetectionInfo
.
getInspectDate
().
toInstant
().
atZone
(
ZoneId
.
systemDefault
()).
toLocalDate
()
:
null
:
null
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"INSPECT_DATE时区转换失败:{}"
,
record
,
e
);
log
.
error
(
"INSPECT_DATE时区转换失败:{}"
,
record
,
e
);
}
}
try
{
try
{
esEquipmentInfo
.
setNEXT_INSPECT_DATE
(
inspectionDetectionInfo
.
getSequenceNbr
()
!=
null
?
inspectionDetectionInfo
.
getNextInspectDate
()
!=
null
?
inspectionDetectionInfo
.
getNextInspectDate
().
toInstant
().
atZone
(
ZoneId
.
systemDefault
()).
toLocalDate
()
:
null
:
null
);
esEquipmentInfo
.
setNEXT_INSPECT_DATE
(
inspectionDetectionInfo
.
getSequenceNbr
()
!=
null
?
inspectionDetectionInfo
.
getNextInspectDate
()
!=
null
?
inspectionDetectionInfo
.
getNextInspectDate
().
toInstant
().
atZone
(
ZoneId
.
systemDefault
()).
toLocalDate
()
:
null
:
null
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"NEXT_INSPECT_DATE时区转换失败:{}"
,
record
,
e
);
log
.
error
(
"NEXT_INSPECT_DATE时区转换失败:{}"
,
record
,
e
);
}
}
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/DataHandlerServiceImpl.java
View file @
469da87d
...
@@ -30,6 +30,7 @@ import com.yeejoin.amos.boot.module.common.api.entity.EsBaseEnterpriseInfo;
...
@@ -30,6 +30,7 @@ import com.yeejoin.amos.boot.module.common.api.entity.EsBaseEnterpriseInfo;
import
com.yeejoin.amos.boot.module.common.api.entity.EsUserInfo
;
import
com.yeejoin.amos.boot.module.common.api.entity.EsUserInfo
;
import
com.yeejoin.amos.boot.module.common.api.entity.TzsUserPermission
;
import
com.yeejoin.amos.boot.module.common.api.entity.TzsUserPermission
;
import
com.yeejoin.amos.boot.module.common.biz.refresh.commonUpdate.BaseEnterpriseUpdate
;
import
com.yeejoin.amos.boot.module.common.biz.refresh.commonUpdate.BaseEnterpriseUpdate
;
import
com.yeejoin.amos.boot.module.common.biz.utils.RefreshDataUtils
;
import
com.yeejoin.amos.boot.module.jg.api.dto.JgInstallationNoticeEqDto
;
import
com.yeejoin.amos.boot.module.jg.api.dto.JgInstallationNoticeEqDto
;
import
com.yeejoin.amos.boot.module.jg.api.dto.JgUseRegistrationDto
;
import
com.yeejoin.amos.boot.module.jg.api.dto.JgUseRegistrationDto
;
import
com.yeejoin.amos.boot.module.jg.api.dto.PieLineEquipContraptionDto
;
import
com.yeejoin.amos.boot.module.jg.api.dto.PieLineEquipContraptionDto
;
...
@@ -1430,7 +1431,8 @@ public class DataHandlerServiceImpl {
...
@@ -1430,7 +1431,8 @@ public class DataHandlerServiceImpl {
BeanUtil
.
copyProperties
(
enterpriseInfo
,
esBaseEnterpriseInfo
);
BeanUtil
.
copyProperties
(
enterpriseInfo
,
esBaseEnterpriseInfo
);
esBaseEnterpriseInfo
.
setSequenceNbr
(
enterpriseInfo
.
getSequenceNbr
()
+
""
);
esBaseEnterpriseInfo
.
setSequenceNbr
(
enterpriseInfo
.
getSequenceNbr
()
+
""
);
esBaseEnterpriseInfo
.
setContactUser
(
enterpriseInfo
.
getUseContact
());
esBaseEnterpriseInfo
.
setContactUser
(
enterpriseInfo
.
getUseContact
());
esBaseEnterpriseInfo
.
setEquipCategory
(
StatisticsDataUpdateService
.
castStrList2String
(
enterpriseInfo
.
getEquipCategory
()));
esBaseEnterpriseInfo
.
setEquipCategory
(
RefreshDataUtils
.
castStrList2String
(
enterpriseInfo
.
getEquipCategory
()));
esBaseEnterpriseInfo
.
setEquipCategoryName
(
RefreshDataUtils
.
castEquCategory2Name
(
esBaseEnterpriseInfo
.
getEquipCategory
()));
List
<
TzBaseUnitLicence
>
unitLicences
=
licenceMapper
.
selectList
(
new
LambdaQueryWrapper
<
TzBaseUnitLicence
>()
List
<
TzBaseUnitLicence
>
unitLicences
=
licenceMapper
.
selectList
(
new
LambdaQueryWrapper
<
TzBaseUnitLicence
>()
.
eq
(
TzBaseUnitLicence:
:
getUnitCode
,
enterpriseInfo
.
getUseUnitCode
())
.
eq
(
TzBaseUnitLicence:
:
getUnitCode
,
enterpriseInfo
.
getUseUnitCode
())
.
eq
(
TzBaseUnitLicence:
:
getIsDelete
,
false
));
.
eq
(
TzBaseUnitLicence:
:
getIsDelete
,
false
));
...
@@ -1477,10 +1479,11 @@ public class DataHandlerServiceImpl {
...
@@ -1477,10 +1479,11 @@ public class DataHandlerServiceImpl {
List
<
EsUserInfo
>
esUserInfos
=
tzsUserInfoPage
.
getRecords
().
stream
().
map
(
u
->
{
List
<
EsUserInfo
>
esUserInfos
=
tzsUserInfoPage
.
getRecords
().
stream
().
map
(
u
->
{
EsUserInfo
esUserInfo
=
new
EsUserInfo
();
EsUserInfo
esUserInfo
=
new
EsUserInfo
();
BeanUtil
.
copyProperties
(
u
,
esUserInfo
);
BeanUtil
.
copyProperties
(
u
,
esUserInfo
);
esUserInfo
.
setPost
(
StatisticsDataUpdateService
.
castStrList2String
(
u
.
getPost
()));
esUserInfo
.
setPost
(
RefreshDataUtils
.
castStrList2String
(
u
.
getPost
()));
esUserInfo
.
setNewPost
(
StatisticsDataUpdateService
.
castStrList2String
(
u
.
getNewPost
()));
esUserInfo
.
setNewPost
(
RefreshDataUtils
.
castStrList2String
(
u
.
getNewPost
()));
esUserInfo
.
setSubPost
(
StatisticsDataUpdateService
.
castStrList2String
(
u
.
getSubPost
()));
esUserInfo
.
setSubPost
(
RefreshDataUtils
.
castStrList2String
(
u
.
getSubPost
()));
esUserInfo
.
setEquipType
(
StatisticsDataUpdateService
.
castStrList2String
(
u
.
getEquipType
()));
esUserInfo
.
setEquipType
(
RefreshDataUtils
.
castStrList2String
(
u
.
getEquipType
()));
esUserInfo
.
setEquipTypeName
(
RefreshDataUtils
.
castEquCategory2Name
(
esUserInfo
.
getEquipType
()));
esUserInfo
.
setUnitType
(
useCodeEnterpriseMap
.
getOrDefault
(
u
.
getUnitCode
(),
new
TzBaseEnterpriseInfo
()).
getUnitType
());
esUserInfo
.
setUnitType
(
useCodeEnterpriseMap
.
getOrDefault
(
u
.
getUnitCode
(),
new
TzBaseEnterpriseInfo
()).
getUnitType
());
esUserInfo
.
setSuperviseOrgName
(
useCodeEnterpriseMap
.
getOrDefault
(
u
.
getUnitCode
(),
new
TzBaseEnterpriseInfo
()).
getSuperviseOrgName
());
esUserInfo
.
setSuperviseOrgName
(
useCodeEnterpriseMap
.
getOrDefault
(
u
.
getUnitCode
(),
new
TzBaseEnterpriseInfo
()).
getSuperviseOrgName
());
esUserInfo
.
setSuperviseOrgCode
(
useCodeEnterpriseMap
.
getOrDefault
(
u
.
getUnitCode
(),
new
TzBaseEnterpriseInfo
()).
getSuperviseOrgCode
());
esUserInfo
.
setSuperviseOrgCode
(
useCodeEnterpriseMap
.
getOrDefault
(
u
.
getUnitCode
(),
new
TzBaseEnterpriseInfo
()).
getSuperviseOrgCode
());
...
@@ -1499,8 +1502,8 @@ public class DataHandlerServiceImpl {
...
@@ -1499,8 +1502,8 @@ public class DataHandlerServiceImpl {
return
permissions
.
stream
().
map
(
p
->
{
return
permissions
.
stream
().
map
(
p
->
{
EsUserInfo
.
License
license
=
new
EsUserInfo
.
License
();
EsUserInfo
.
License
license
=
new
EsUserInfo
.
License
();
BeanUtil
.
copyProperties
(
p
,
license
);
BeanUtil
.
copyProperties
(
p
,
license
);
license
.
setPermissionItem
(
StatisticsDataUpdateService
.
castStrList2String
(
p
.
getPermissionItem
()));
license
.
setPermissionItem
(
RefreshDataUtils
.
castStrList2String
(
p
.
getPermissionItem
()));
license
.
setJobItem
(
StatisticsDataUpdateService
.
castStrList2String
(
p
.
getJobItem
()));
license
.
setJobItem
(
RefreshDataUtils
.
castStrList2String
(
p
.
getJobItem
()));
return
license
;
return
license
;
}).
collect
(
Collectors
.
toList
());
}).
collect
(
Collectors
.
toList
());
}
}
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/refresh/handler/EnterpriseRefreshHandler.java
View file @
469da87d
...
@@ -70,6 +70,7 @@ public class EnterpriseRefreshHandler implements IDataRefreshHandler {
...
@@ -70,6 +70,7 @@ public class EnterpriseRefreshHandler implements IDataRefreshHandler {
esBaseEnterpriseInfo
.
setSequenceNbr
(
enterpriseInfo
.
getSequenceNbr
()
+
""
);
esBaseEnterpriseInfo
.
setSequenceNbr
(
enterpriseInfo
.
getSequenceNbr
()
+
""
);
esBaseEnterpriseInfo
.
setContactUser
(
enterpriseInfo
.
getUseContact
());
esBaseEnterpriseInfo
.
setContactUser
(
enterpriseInfo
.
getUseContact
());
esBaseEnterpriseInfo
.
setEquipCategory
(
RefreshDataUtils
.
castStrList2String
(
enterpriseInfo
.
getEquipCategory
()));
esBaseEnterpriseInfo
.
setEquipCategory
(
RefreshDataUtils
.
castStrList2String
(
enterpriseInfo
.
getEquipCategory
()));
esBaseEnterpriseInfo
.
setEquipCategoryName
(
RefreshDataUtils
.
castEquCategory2Name
(
esBaseEnterpriseInfo
.
getEquipCategory
()));
List
<
TzBaseUnitLicence
>
unitLicences
=
licenceMapper
.
selectList
(
new
LambdaQueryWrapper
<
TzBaseUnitLicence
>().
eq
(
TzBaseUnitLicence:
:
getUnitCode
,
enterpriseInfo
.
getUseUnitCode
()).
eq
(
TzBaseUnitLicence:
:
getIsDelete
,
false
));
List
<
TzBaseUnitLicence
>
unitLicences
=
licenceMapper
.
selectList
(
new
LambdaQueryWrapper
<
TzBaseUnitLicence
>().
eq
(
TzBaseUnitLicence:
:
getUnitCode
,
enterpriseInfo
.
getUseUnitCode
()).
eq
(
TzBaseUnitLicence:
:
getIsDelete
,
false
));
List
<
EsBaseEnterpriseInfo
.
License
>
licenses
=
unitLicences
.
stream
().
map
(
lis
->
{
List
<
EsBaseEnterpriseInfo
.
License
>
licenses
=
unitLicences
.
stream
().
map
(
lis
->
{
EsBaseEnterpriseInfo
.
License
esLicense
=
new
EsBaseEnterpriseInfo
.
License
();
EsBaseEnterpriseInfo
.
License
esLicense
=
new
EsBaseEnterpriseInfo
.
License
();
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/refresh/handler/UserRefreshHandler.java
View file @
469da87d
...
@@ -61,6 +61,7 @@ public class UserRefreshHandler implements IDataRefreshHandler {
...
@@ -61,6 +61,7 @@ public class UserRefreshHandler implements IDataRefreshHandler {
esUserInfo
.
setNewPost
(
RefreshDataUtils
.
castStrList2String
(
userInfo
.
getNewPost
()));
esUserInfo
.
setNewPost
(
RefreshDataUtils
.
castStrList2String
(
userInfo
.
getNewPost
()));
esUserInfo
.
setSubPost
(
RefreshDataUtils
.
castStrList2String
(
userInfo
.
getSubPost
()));
esUserInfo
.
setSubPost
(
RefreshDataUtils
.
castStrList2String
(
userInfo
.
getSubPost
()));
esUserInfo
.
setEquipType
(
RefreshDataUtils
.
castStrList2String
(
userInfo
.
getEquipType
()));
esUserInfo
.
setEquipType
(
RefreshDataUtils
.
castStrList2String
(
userInfo
.
getEquipType
()));
esUserInfo
.
setEquipTypeName
(
RefreshDataUtils
.
castEquCategory2Name
(
esUserInfo
.
getEquipType
()));
esUserInfo
.
setUnitType
(
unit
.
getUnitType
());
esUserInfo
.
setUnitType
(
unit
.
getUnitType
());
esUserInfo
.
setSuperviseOrgName
(
unit
.
getSuperviseOrgName
());
esUserInfo
.
setSuperviseOrgName
(
unit
.
getSuperviseOrgName
());
esUserInfo
.
setSuperviseOrgCode
(
unit
.
getSuperviseOrgCode
());
esUserInfo
.
setSuperviseOrgCode
(
unit
.
getSuperviseOrgCode
());
...
...
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