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
c8a21d0a
Commit
c8a21d0a
authored
Mar 26, 2024
by
wujiang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://36.40.66.175:5000/moa/amos-boot-biz
into developer
parents
e3bcc68a
15c6197e
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
30 additions
and
24 deletions
+30
-24
PersonnelBusinessServiceImpl.java
...e/hygf/biz/service/impl/PersonnelBusinessServiceImpl.java
+2
-2
UnitInfoServiceImpl.java
...oot/module/hygf/biz/service/impl/UnitInfoServiceImpl.java
+2
-2
IdxBizFanHealthIndexController.java
.../jxiop/biz/controller/IdxBizFanHealthIndexController.java
+7
-7
IdxBizPvHealthIndexController.java
...e/jxiop/biz/controller/IdxBizPvHealthIndexController.java
+7
-7
WarningRecordStatusMessage.java
...oot/module/jxiop/biz/emqx/WarningRecordStatusMessage.java
+2
-2
TdengineTimeServiceImpl.java
...odule/jxiop/biz/service/impl/TdengineTimeServiceImpl.java
+6
-2
FanHealthIndex.xml
...iz/src/main/resources/mapper/tdengine2/FanHealthIndex.xml
+2
-2
PersonBasicServiceImpl.java
...module/jxiop/biz/service/impl/PersonBasicServiceImpl.java
+2
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/PersonnelBusinessServiceImpl.java
View file @
c8a21d0a
...
@@ -173,7 +173,7 @@ public class PersonnelBusinessServiceImpl extends BaseService<PersonnelBusinessD
...
@@ -173,7 +173,7 @@ public class PersonnelBusinessServiceImpl extends BaseService<PersonnelBusinessD
//增加人员权限
//增加人员权限
List
<
String
>
lisk
=
new
ArrayList
<>();
List
<
String
>
lisk
=
new
ArrayList
<>();
StdUserEmpower
stdUserEmpower
=
new
StdUserEmpower
();
StdUserEmpower
stdUserEmpower
=
new
StdUserEmpower
();
lisk
.
add
(
publicAgencyUser
.
getAmosOrgCode
());
//
lisk.add(publicAgencyUser.getAmosOrgCode());
lisk
.
add
(
re
.
getRegionalCompaniesCode
());
lisk
.
add
(
re
.
getRegionalCompaniesCode
());
stdUserEmpower
.
setAmosUserId
(
publicAgencyUser
.
getAmosUserId
());
stdUserEmpower
.
setAmosUserId
(
publicAgencyUser
.
getAmosUserId
());
stdUserEmpower
.
setAmosOrgCode
(
lisk
);
stdUserEmpower
.
setAmosOrgCode
(
lisk
);
...
@@ -287,7 +287,7 @@ public class PersonnelBusinessServiceImpl extends BaseService<PersonnelBusinessD
...
@@ -287,7 +287,7 @@ public class PersonnelBusinessServiceImpl extends BaseService<PersonnelBusinessD
LambdaQueryWrapper
<
StdUserEmpower
>
uo
=
new
LambdaQueryWrapper
();
LambdaQueryWrapper
<
StdUserEmpower
>
uo
=
new
LambdaQueryWrapper
();
uo
.
eq
(
StdUserEmpower:
:
getAmosUserId
,
publicAgencyUser
.
getAmosUserId
());
uo
.
eq
(
StdUserEmpower:
:
getAmosUserId
,
publicAgencyUser
.
getAmosUserId
());
StdUserEmpower
stdUserEmpower
=
userEmpowerMapper
.
selectOne
(
uo
);
StdUserEmpower
stdUserEmpower
=
userEmpowerMapper
.
selectOne
(
uo
);
lisk
.
add
(
publicAgencyUser
.
getAmosOrgCode
());
//
lisk.add(publicAgencyUser.getAmosOrgCode());
lisk
.
add
(
re
.
getRegionalCompaniesCode
());
lisk
.
add
(
re
.
getRegionalCompaniesCode
());
if
(
stdUserEmpower
!=
null
){
if
(
stdUserEmpower
!=
null
){
stdUserEmpower
.
setAmosUserId
(
publicAgencyUser
.
getAmosUserId
());
stdUserEmpower
.
setAmosUserId
(
publicAgencyUser
.
getAmosUserId
());
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/UnitInfoServiceImpl.java
View file @
c8a21d0a
...
@@ -591,7 +591,7 @@ public class UnitInfoServiceImpl extends BaseService<UnitInfoDto,UnitInfo,UnitIn
...
@@ -591,7 +591,7 @@ public class UnitInfoServiceImpl extends BaseService<UnitInfoDto,UnitInfo,UnitIn
publicAgencyUserMapper
.
insert
(
publicAgencyUser
);
publicAgencyUserMapper
.
insert
(
publicAgencyUser
);
List
<
String
>
lis
=
new
ArrayList
<>();
List
<
String
>
lis
=
new
ArrayList
<>();
lis
.
add
(
unitInfo
.
getAmosCompanyCode
());
//
lis.add(unitInfo.getAmosCompanyCode());
LambdaQueryWrapper
<
RegionalCompanies
>
queryWrapper
=
new
LambdaQueryWrapper
<
RegionalCompanies
>();
LambdaQueryWrapper
<
RegionalCompanies
>
queryWrapper
=
new
LambdaQueryWrapper
<
RegionalCompanies
>();
queryWrapper
.
eq
(
RegionalCompanies:
:
getUnitInfoId
,
unitInfo
.
getSequenceNbr
());
queryWrapper
.
eq
(
RegionalCompanies:
:
getUnitInfoId
,
unitInfo
.
getSequenceNbr
());
List
<
RegionalCompanies
>
list
=
regionalCompaniesMapper
.
selectList
(
queryWrapper
);
List
<
RegionalCompanies
>
list
=
regionalCompaniesMapper
.
selectList
(
queryWrapper
);
...
@@ -921,7 +921,7 @@ public class UnitInfoServiceImpl extends BaseService<UnitInfoDto,UnitInfo,UnitIn
...
@@ -921,7 +921,7 @@ public class UnitInfoServiceImpl extends BaseService<UnitInfoDto,UnitInfo,UnitIn
LambdaQueryWrapper
<
StdUserEmpower
>
uo
=
new
LambdaQueryWrapper
();
LambdaQueryWrapper
<
StdUserEmpower
>
uo
=
new
LambdaQueryWrapper
();
uo
.
eq
(
StdUserEmpower:
:
getAmosUserId
,
unitInfo
.
getAdminUserId
());
uo
.
eq
(
StdUserEmpower:
:
getAmosUserId
,
unitInfo
.
getAdminUserId
());
StdUserEmpower
stdUserEmpower
=
userEmpowerMapper
.
selectOne
(
uo
);
StdUserEmpower
stdUserEmpower
=
userEmpowerMapper
.
selectOne
(
uo
);
lisk
.
add
(
unitInfo
.
getAmosCompanyCode
());
//
lisk.add(unitInfo.getAmosCompanyCode());
if
(
stdUserEmpower
!=
null
){
if
(
stdUserEmpower
!=
null
){
stdUserEmpower
.
setAmosUserId
(
unitInfo
.
getAdminUserId
());
stdUserEmpower
.
setAmosUserId
(
unitInfo
.
getAdminUserId
());
stdUserEmpower
.
setAmosOrgCode
(
lisk
);
stdUserEmpower
.
setAmosOrgCode
(
lisk
);
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-analyse-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/controller/IdxBizFanHealthIndexController.java
View file @
c8a21d0a
...
@@ -779,7 +779,7 @@ public class IdxBizFanHealthIndexController extends BaseController {
...
@@ -779,7 +779,7 @@ public class IdxBizFanHealthIndexController extends BaseController {
}
else
{
}
else
{
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
}
}
axisData
.
add
(
obj
.
get
AnalysisTim
e
());
axisData
.
add
(
obj
.
get
RecDat
e
());
}
}
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"axisData"
,
axisData
);
result
.
put
(
"axisData"
,
axisData
);
...
@@ -800,9 +800,9 @@ public class IdxBizFanHealthIndexController extends BaseController {
...
@@ -800,9 +800,9 @@ public class IdxBizFanHealthIndexController extends BaseController {
}
else
{
}
else
{
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
}
}
Date
dateTime
=
DateUtil
.
parseDateTime
(
obj
.
getAnalysisTime
());
//
Date dateTime = DateUtil.parseDateTime(obj.getAnalysisTime());
String
format
=
DateUtil
.
format
(
dateTime
,
"yyyy-MM-dd HH:00"
);
//
String format = DateUtil.format(dateTime, "yyyy-MM-dd HH:00");
axisData
.
add
(
format
);
axisData
.
add
(
obj
.
getRecDate
()
);
}
}
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"axisData"
,
axisData
);
result
.
put
(
"axisData"
,
axisData
);
...
@@ -824,9 +824,9 @@ public class IdxBizFanHealthIndexController extends BaseController {
...
@@ -824,9 +824,9 @@ public class IdxBizFanHealthIndexController extends BaseController {
}
else
{
}
else
{
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
}
}
Date
dateTime
=
DateUtil
.
parseDateTime
(
obj
.
getAnalysisTime
());
//
Date dateTime = DateUtil.parseDateTime(obj.getAnalysisTime());
String
format
=
DateUtil
.
format
(
dateTime
,
DatePattern
.
NORM_DATETIME_MINUTE_PATTERN
);
//
String format = DateUtil.format(dateTime, DatePattern.NORM_DATETIME_MINUTE_PATTERN);
axisData
.
add
(
format
);
axisData
.
add
(
obj
.
getRecDate
()
);
}
}
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"axisData"
,
axisData
);
result
.
put
(
"axisData"
,
axisData
);
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-analyse-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/controller/IdxBizPvHealthIndexController.java
View file @
c8a21d0a
...
@@ -440,7 +440,7 @@ public class IdxBizPvHealthIndexController extends BaseController {
...
@@ -440,7 +440,7 @@ public class IdxBizPvHealthIndexController extends BaseController {
}
else
{
}
else
{
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
}
}
axisData
.
add
(
obj
.
get
AnalysisTim
e
());
axisData
.
add
(
obj
.
get
RecDat
e
());
}
}
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"axisData"
,
axisData
);
result
.
put
(
"axisData"
,
axisData
);
...
@@ -461,9 +461,9 @@ public class IdxBizPvHealthIndexController extends BaseController {
...
@@ -461,9 +461,9 @@ public class IdxBizPvHealthIndexController extends BaseController {
}
else
{
}
else
{
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
}
}
Date
dateTime
=
DateUtil
.
parseDateTime
(
obj
.
getAnalysisTime
());
//
Date dateTime = DateUtil.parseDateTime(obj.getAnalysisTime());
String
format
=
DateUtil
.
format
(
dateTime
,
"yyyy-MM-dd HH:00"
);
//
String format = DateUtil.format(dateTime, "yyyy-MM-dd HH:00");
axisData
.
add
(
format
);
axisData
.
add
(
obj
.
getRecDate
()
);
}
}
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"axisData"
,
axisData
);
result
.
put
(
"axisData"
,
axisData
);
...
@@ -488,9 +488,9 @@ public class IdxBizPvHealthIndexController extends BaseController {
...
@@ -488,9 +488,9 @@ public class IdxBizPvHealthIndexController extends BaseController {
}
else
{
}
else
{
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
seriesData
.
add
(
obj
.
getAnomaly
()
>
7.5
?
7.5
:
dfSS
.
format
(
obj
.
getAnomaly
()));
}
}
Date
dateTime
=
DateUtil
.
parseDateTime
(
obj
.
getAnalysisTime
());
//
Date dateTime = DateUtil.parseDateTime(obj.getAnalysisTime());
String
format
=
DateUtil
.
format
(
dateTime
,
DatePattern
.
NORM_DATETIME_MINUTE_PATTERN
);
//
String format = DateUtil.format(dateTime, DatePattern.NORM_DATETIME_MINUTE_PATTERN);
axisData
.
add
(
format
);
axisData
.
add
(
obj
.
getRecDate
()
);
}
}
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"seriesData"
,
seriesData
);
result
.
put
(
"axisData"
,
axisData
);
result
.
put
(
"axisData"
,
axisData
);
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-analyse-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/emqx/WarningRecordStatusMessage.java
View file @
c8a21d0a
...
@@ -77,7 +77,7 @@ public class WarningRecordStatusMessage extends EmqxListener {
...
@@ -77,7 +77,7 @@ public class WarningRecordStatusMessage extends EmqxListener {
queryWrapper
.
eq
(
"kks"
,
jsonObject
.
getString
(
"objectId"
));
queryWrapper
.
eq
(
"kks"
,
jsonObject
.
getString
(
"objectId"
));
if
(
params
.
length
==
3
){
if
(
params
.
length
==
3
){
queryWrapper
.
eq
(
"sub_system"
,
params
[
0
]);
queryWrapper
.
eq
(
"sub_system"
,
params
[
0
]);
queryWrapper
.
eq
(
"health_level"
,
params
[
1
]);
//
queryWrapper.eq("health_level",params[1]);
queryWrapper
.
eq
(
"warning_period"
,
params
[
2
]);
queryWrapper
.
eq
(
"warning_period"
,
params
[
2
]);
}
}
List
<
FanWarningRecord
>
fanWarningRecords
=
fanWaringRecordMapper
.
selectList
(
queryWrapper
);
List
<
FanWarningRecord
>
fanWarningRecords
=
fanWaringRecordMapper
.
selectList
(
queryWrapper
);
...
@@ -128,7 +128,7 @@ public class WarningRecordStatusMessage extends EmqxListener {
...
@@ -128,7 +128,7 @@ public class WarningRecordStatusMessage extends EmqxListener {
queryWrapper
.
eq
(
"kks"
,
jsonObject
.
getString
(
"objectId"
));
queryWrapper
.
eq
(
"kks"
,
jsonObject
.
getString
(
"objectId"
));
if
(
params
.
length
==
3
){
if
(
params
.
length
==
3
){
queryWrapper
.
eq
(
"subarray"
,
params
[
0
]);
queryWrapper
.
eq
(
"subarray"
,
params
[
0
]);
queryWrapper
.
eq
(
"health_level"
,
params
[
1
]);
//
queryWrapper.eq("health_level",params[1]);
queryWrapper
.
eq
(
"warning_period"
,
params
[
2
]);
queryWrapper
.
eq
(
"warning_period"
,
params
[
2
]);
}
}
List
<
PvWarningRecord
>
pvWarningRecords
=
pvWaringRecordMapper
.
selectList
(
queryWrapper
);
List
<
PvWarningRecord
>
pvWarningRecords
=
pvWaringRecordMapper
.
selectList
(
queryWrapper
);
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-analyse-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/TdengineTimeServiceImpl.java
View file @
c8a21d0a
...
@@ -129,7 +129,9 @@ public class TdengineTimeServiceImpl {
...
@@ -129,7 +129,9 @@ public class TdengineTimeServiceImpl {
return
;
return
;
}
}
idxFanHealthIndexMapper
.
deleteAllDataByTableName
(
"fan_health_index_latest_data"
,
WarningPeriodEnum
.
DAY
.
getName
());
idxFanHealthIndexMapper
.
deleteAllDataByTableName
(
"fan_health_index_latest_data"
,
WarningPeriodEnum
.
DAY
.
getName
());
String
recDate
=
DateUtil
.
format
(
new
Date
(),
"yyyy-MM-dd"
);
Date
recOriginalDate
=
new
Date
();
recOriginalDate
=
DateUtil
.
offsetDay
(
recOriginalDate
,
-
1
);
String
recDate
=
DateUtil
.
format
(
recOriginalDate
,
"yyyy-MM-dd"
);
String
startTime
=
DateUtils
.
dateFormat
(
DateUtils
.
dateAddHours
(
new
Date
(),
-
32
),
DateUtils
.
DATE_TIME_PATTERN
);
String
startTime
=
DateUtils
.
dateFormat
(
DateUtils
.
dateAddHours
(
new
Date
(),
-
32
),
DateUtils
.
DATE_TIME_PATTERN
);
List
<
IdxBizFanHealthLevel
>
levelList
=
idxBizFanHealthLevelMapper
.
selectList
(
new
LambdaQueryWrapper
<
IdxBizFanHealthLevel
>().
eq
(
IdxBizFanHealthLevel:
:
getAnalysisObjType
,
"测点"
).
last
(
"limit 4"
));
List
<
IdxBizFanHealthLevel
>
levelList
=
idxBizFanHealthLevelMapper
.
selectList
(
new
LambdaQueryWrapper
<
IdxBizFanHealthLevel
>().
eq
(
IdxBizFanHealthLevel:
:
getAnalysisObjType
,
"测点"
).
last
(
"limit 4"
));
List
<
FanHealthIndex
>
fanHealthIndices
=
fanHealthIndexMapper
.
getInfoListByGroupByCdFan
(
startTime
,
"fan_health_index_hour"
,
"测点"
);
List
<
FanHealthIndex
>
fanHealthIndices
=
fanHealthIndexMapper
.
getInfoListByGroupByCdFan
(
startTime
,
"fan_health_index_hour"
,
"测点"
);
...
@@ -266,7 +268,9 @@ public class TdengineTimeServiceImpl {
...
@@ -266,7 +268,9 @@ public class TdengineTimeServiceImpl {
return
;
return
;
}
}
idxFanHealthIndexMapper
.
deleteAllDataByTableName
(
"pv_health_index_latest_data"
,
WarningPeriodEnum
.
DAY
.
getName
());
idxFanHealthIndexMapper
.
deleteAllDataByTableName
(
"pv_health_index_latest_data"
,
WarningPeriodEnum
.
DAY
.
getName
());
String
recDate
=
DateUtil
.
format
(
new
Date
(),
"yyyy-MM-dd"
);
Date
recOriginalDate
=
new
Date
();
recOriginalDate
=
DateUtil
.
offsetDay
(
recOriginalDate
,
-
1
);
String
recDate
=
DateUtil
.
format
(
recOriginalDate
,
"yyyy-MM-dd"
);
List
<
IdxBizPvHealthLevel
>
levelList
=
idxBizPvHealthLevelMapper
.
selectList
(
new
LambdaQueryWrapper
<
IdxBizPvHealthLevel
>().
eq
(
IdxBizPvHealthLevel:
:
getAnalysisObjType
,
"测点"
).
last
(
"limit 4"
));
List
<
IdxBizPvHealthLevel
>
levelList
=
idxBizPvHealthLevelMapper
.
selectList
(
new
LambdaQueryWrapper
<
IdxBizPvHealthLevel
>().
eq
(
IdxBizPvHealthLevel:
:
getAnalysisObjType
,
"测点"
).
last
(
"limit 4"
));
String
startTime
=
DateUtils
.
dateFormat
(
DateUtils
.
dateAddHours
(
new
Date
(),
-
32
),
DateUtils
.
DATE_TIME_PATTERN
);
String
startTime
=
DateUtils
.
dateFormat
(
DateUtils
.
dateAddHours
(
new
Date
(),
-
32
),
DateUtils
.
DATE_TIME_PATTERN
);
List
<
PvHealthIndex
>
fanHealthIndices
=
pvHealthIndexMapper
.
getInfoListByGroupByCdPv
(
startTime
,
"pv_health_index_hour"
,
"测点"
);
List
<
PvHealthIndex
>
fanHealthIndices
=
pvHealthIndexMapper
.
getInfoListByGroupByCdPv
(
startTime
,
"pv_health_index_hour"
,
"测点"
);
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-analyse-biz/src/main/resources/mapper/tdengine2/FanHealthIndex.xml
View file @
c8a21d0a
...
@@ -173,7 +173,7 @@
...
@@ -173,7 +173,7 @@
<if
test=
"dto.analysisType!= null and dto.analysisType!= ''"
>
and analysis_type = #{dto.analysisType}
</if>
<if
test=
"dto.analysisType!= null and dto.analysisType!= ''"
>
and analysis_type = #{dto.analysisType}
</if>
<if
test=
"dto.endDate!= null and dto.endDate!= '' "
>
and ts
<
= #{dto.endDate}
</if>
<if
test=
"dto.endDate!= null and dto.endDate!= '' "
>
and ts
<
= #{dto.endDate}
</if>
<if
test=
"dto.startDate!= null and dto.startDate!= ''"
>
and ts
>
= #{dto.startDate}
</if>
<if
test=
"dto.startDate!= null and dto.startDate!= ''"
>
and ts
>
= #{dto.startDate}
</if>
<if
test=
"dto.area!= null and dto.area!= ''"
>
AND area = #{area}
</if>
<if
test=
"dto.area!= null and dto.area!= ''"
>
AND area = #{
dto.
area}
</if>
<if
test=
"dto.number!= null and dto.number!= ''"
>
AND `number` = #{dto.number}
</if>
<if
test=
"dto.number!= null and dto.number!= ''"
>
AND `number` = #{dto.number}
</if>
<if
test=
"dto.pointName!= null and dto.pointName!= ''"
>
AND point_name = #{dto.pointName}
</if>
<if
test=
"dto.pointName!= null and dto.pointName!= ''"
>
AND point_name = #{dto.pointName}
</if>
<if
test=
"dto.station!= null and dto.station!= ''"
>
AND station = #{dto.station}
</if>
<if
test=
"dto.station!= null and dto.station!= ''"
>
AND station = #{dto.station}
</if>
...
@@ -202,7 +202,7 @@
...
@@ -202,7 +202,7 @@
<if
test=
"dto.analysisType!= null and dto.analysisType!= ''"
>
and analysis_type = #{dto.analysisType}
</if>
<if
test=
"dto.analysisType!= null and dto.analysisType!= ''"
>
and analysis_type = #{dto.analysisType}
</if>
<if
test=
"dto.endDate!= null and dto.endDate!= '' "
>
and ts
<
= #{dto.endDate}
</if>
<if
test=
"dto.endDate!= null and dto.endDate!= '' "
>
and ts
<
= #{dto.endDate}
</if>
<if
test=
"dto.startDate!= null and dto.startDate!= ''"
>
and ts
>
= #{dto.startDate}
</if>
<if
test=
"dto.startDate!= null and dto.startDate!= ''"
>
and ts
>
= #{dto.startDate}
</if>
<if
test=
"dto.area!= null and dto.area!= ''"
>
AND area = #{area}
</if>
<if
test=
"dto.area!= null and dto.area!= ''"
>
AND area = #{
dto.
area}
</if>
<if
test=
"dto.number!= null and dto.number!= ''"
>
AND `number` = #{dto.number}
</if>
<if
test=
"dto.number!= null and dto.number!= ''"
>
AND `number` = #{dto.number}
</if>
<if
test=
"dto.pointName!= null and dto.pointName!= ''"
>
AND point_name = #{dto.pointName}
</if>
<if
test=
"dto.pointName!= null and dto.pointName!= ''"
>
AND point_name = #{dto.pointName}
</if>
<if
test=
"dto.station!= null and dto.station!= ''"
>
AND station = #{dto.station}
</if>
<if
test=
"dto.station!= null and dto.station!= ''"
>
AND station = #{dto.station}
</if>
...
...
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/PersonBasicServiceImpl.java
View file @
c8a21d0a
...
@@ -693,6 +693,8 @@ public class PersonBasicServiceImpl extends BaseService<PersonBasicDto, PersonBa
...
@@ -693,6 +693,8 @@ public class PersonBasicServiceImpl extends BaseService<PersonBasicDto, PersonBa
}
else
{
}
else
{
stdUserEmpowerhygf
.
setAmosOrgCode
(
re
);
stdUserEmpowerhygf
.
setAmosOrgCode
(
re
);
}
}
}
else
{
stdUserEmpowerhygf
.
setAmosOrgCode
(
re
);
}
}
List
<
String
>
exre
=
personAccount
.
getExternalRegionalCompaniesSeq
();
List
<
String
>
exre
=
personAccount
.
getExternalRegionalCompaniesSeq
();
// if(exre!=null&&!exre.isEmpty()){
// if(exre!=null&&!exre.isEmpty()){
...
...
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