Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
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
赵啸非
smart_gov_platform
Commits
6744d973
Commit
6744d973
authored
2 years ago
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户行为分析客户埋点接口
parent
42c3a718
Changes
22
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
861 additions
and
189 deletions
+861
-189
portal-manager/doc/api.md
portal-manager/doc/api.md
+1
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessDepthEntity.java
.../mortals/xhx/module/page/model/PageAccessDepthEntity.java
+23
-2
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessDepthQuery.java
...m/mortals/xhx/module/page/model/PageAccessDepthQuery.java
+161
-11
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessEntity.java
...a/com/mortals/xhx/module/page/model/PageAccessEntity.java
+22
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessQuery.java
...va/com/mortals/xhx/module/page/model/PageAccessQuery.java
+57
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageEventEntity.java
...va/com/mortals/xhx/module/page/model/PageEventEntity.java
+22
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageEventQuery.java
...ava/com/mortals/xhx/module/page/model/PageEventQuery.java
+57
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageInfoEntity.java
...ava/com/mortals/xhx/module/page/model/PageInfoEntity.java
+22
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageInfoQuery.java
...java/com/mortals/xhx/module/page/model/PageInfoQuery.java
+57
-1
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageRouteEntity.java
...va/com/mortals/xhx/module/page/model/PageRouteEntity.java
+23
-2
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageRouteQuery.java
...ava/com/mortals/xhx/module/page/model/PageRouteQuery.java
+64
-20
portal-manager/src/main/java/com/mortals/xhx/module/page/model/pdu/BuryPointPdu.java
...a/com/mortals/xhx/module/page/model/pdu/BuryPointPdu.java
+2
-0
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageAccessDepthServiceImpl.java
.../module/page/service/impl/PageAccessDepthServiceImpl.java
+1
-0
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageAccessServiceImpl.java
...s/xhx/module/page/service/impl/PageAccessServiceImpl.java
+1
-0
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageEventServiceImpl.java
...ls/xhx/module/page/service/impl/PageEventServiceImpl.java
+1
-0
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageRouteServiceImpl.java
...ls/xhx/module/page/service/impl/PageRouteServiceImpl.java
+1
-0
portal-manager/src/main/java/com/mortals/xhx/module/page/web/BuryPointController.java
.../com/mortals/xhx/module/page/web/BuryPointController.java
+0
-1
portal-manager/src/main/resources/sqlmap/module/page/PageAccessDepthMapper.xml
...in/resources/sqlmap/module/page/PageAccessDepthMapper.xml
+84
-30
portal-manager/src/main/resources/sqlmap/module/page/PageAccessMapper.xml
...rc/main/resources/sqlmap/module/page/PageAccessMapper.xml
+60
-20
portal-manager/src/main/resources/sqlmap/module/page/PageEventMapper.xml
...src/main/resources/sqlmap/module/page/PageEventMapper.xml
+70
-30
portal-manager/src/main/resources/sqlmap/module/page/PageInfoMapper.xml
.../src/main/resources/sqlmap/module/page/PageInfoMapper.xml
+60
-20
portal-manager/src/main/resources/sqlmap/module/page/PageRouteMapper.xml
...src/main/resources/sqlmap/module/page/PageRouteMapper.xml
+72
-46
No files found.
portal-manager/doc/api.md
View file @
6744d973
...
...
@@ -4619,7 +4619,7 @@ msg|String|消息|-
**内容类型:**
application/json;charset=utf-8
**简要描述:**
保存
或更新页面事件记录:id为空时为新增保存,否则为更新提交
**简要描述:**
保存
页面事件记录
**请求参数:**
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessDepthEntity.java
View file @
6744d973
...
...
@@ -10,12 +10,16 @@ import com.mortals.xhx.module.page.model.vo.PageAccessDepthVo;
* 产品页面配置实体对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageAccessDepthEntity
extends
PageAccessDepthVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备编码
*/
private
String
deviceNum
;
/**
* 产品id
*/
...
...
@@ -41,6 +45,20 @@ public class PageAccessDepthEntity extends PageAccessDepthVo {
public
PageAccessDepthEntity
(){}
/**
* 获取 设备编码
* @return String
*/
public
String
getDeviceNum
(){
return
deviceNum
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
void
setDeviceNum
(
String
deviceNum
){
this
.
deviceNum
=
deviceNum
;
}
/**
* 获取 产品id
* @return Long
*/
...
...
@@ -98,7 +116,7 @@ public class PageAccessDepthEntity extends PageAccessDepthVo {
}
/**
* 获取 本次访问深度
* @return
String
* @return
Integer
*/
public
Integer
getDepthValue
(){
return
depthValue
;
...
...
@@ -132,6 +150,7 @@ public class PageAccessDepthEntity extends PageAccessDepthVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",deviceNum:"
).
append
(
getDeviceNum
());
sb
.
append
(
",productId:"
).
append
(
getProductId
());
sb
.
append
(
",productName:"
).
append
(
getProductName
());
sb
.
append
(
",pageCode:"
).
append
(
getPageCode
());
...
...
@@ -142,6 +161,8 @@ public class PageAccessDepthEntity extends PageAccessDepthVo {
public
void
initAttrValue
(){
this
.
deviceNum
=
""
;
this
.
productId
=
null
;
this
.
productName
=
""
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessDepthQuery.java
View file @
6744d973
...
...
@@ -6,7 +6,7 @@ import com.mortals.xhx.module.page.model.PageAccessDepthEntity;
* 产品页面配置查询对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageAccessDepthQuery
extends
PageAccessDepthEntity
{
/** 开始 序号,主键,自增长 */
...
...
@@ -24,6 +24,11 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
/** 序号,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 设备编码 */
private
List
<
String
>
deviceNumList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceNumNotList
;
/** 开始 产品id */
private
Long
productIdStart
;
...
...
@@ -54,11 +59,21 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
/** 页面名称排除列表 */
private
List
<
String
>
pageNameNotList
;
/** 本次访问深度 */
private
List
<
Integer
>
depthValueList
;
/** 开始 本次访问深度 */
private
Integer
depthValueStart
;
/** 结束 本次访问深度 */
private
Integer
depthValueEnd
;
/** 增加 本次访问深度 */
private
Integer
depthValueIncrement
;
/** 本次访问深度列表 */
private
List
<
Integer
>
depthValueList
;
/** 本次访问深度排除列表 */
private
List
<
String
>
depthValueNotList
;
private
List
<
Integer
>
depthValueNotList
;
/** 开始 创建用户 */
private
Long
createUserIdStart
;
...
...
@@ -190,6 +205,38 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
}
/**
* 获取 设备编码
* @return deviceNumList
*/
public
List
<
String
>
getDeviceNumList
(){
return
this
.
deviceNumList
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
void
setDeviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
}
/**
* 获取 设备编码
* @return deviceNumNotList
*/
public
List
<
String
>
getDeviceNumNotList
(){
return
this
.
deviceNumNotList
;
}
/**
* 设置 设备编码
* @param deviceNumNotList
*/
public
void
setDeviceNumNotList
(
List
<
String
>
deviceNumNotList
){
this
.
deviceNumNotList
=
deviceNumNotList
;
}
/**
* 获取 开始 产品id
* @return productIdStart
...
...
@@ -367,6 +414,54 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
this
.
pageNameNotList
=
pageNameNotList
;
}
/**
* 获取 开始 本次访问深度
* @return depthValueStart
*/
public
Integer
getDepthValueStart
(){
return
this
.
depthValueStart
;
}
/**
* 设置 开始 本次访问深度
* @param depthValueStart
*/
public
void
setDepthValueStart
(
Integer
depthValueStart
){
this
.
depthValueStart
=
depthValueStart
;
}
/**
* 获取 结束 本次访问深度
* @return $depthValueEnd
*/
public
Integer
getDepthValueEnd
(){
return
this
.
depthValueEnd
;
}
/**
* 设置 结束 本次访问深度
* @param depthValueEnd
*/
public
void
setDepthValueEnd
(
Integer
depthValueEnd
){
this
.
depthValueEnd
=
depthValueEnd
;
}
/**
* 获取 增加 本次访问深度
* @return depthValueIncrement
*/
public
Integer
getDepthValueIncrement
(){
return
this
.
depthValueIncrement
;
}
/**
* 设置 增加 本次访问深度
* @param depthValueIncrement
*/
public
void
setDepthValueIncrement
(
Integer
depthValueIncrement
){
this
.
depthValueIncrement
=
depthValueIncrement
;
}
/**
* 获取 本次访问深度
* @return depthValueList
...
...
@@ -387,7 +482,7 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
* 获取 本次访问深度
* @return depthValueNotList
*/
public
List
<
String
>
getDepthValueNotList
(){
public
List
<
Integer
>
getDepthValueNotList
(){
return
this
.
depthValueNotList
;
}
...
...
@@ -395,10 +490,11 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
* 设置 本次访问深度
* @param depthValueNotList
*/
public
void
setDepthValueNotList
(
List
<
String
>
depthValueNotList
){
public
void
setDepthValueNotList
(
List
<
Integer
>
depthValueNotList
){
this
.
depthValueNotList
=
depthValueNotList
;
}
/**
* 获取 开始 创建用户
* @return createUserIdStart
...
...
@@ -679,6 +775,25 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
return
this
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
PageAccessDepthQuery
deviceNum
(
String
deviceNum
){
setDeviceNum
(
deviceNum
);
return
this
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
PageAccessDepthQuery
deviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
return
this
;
}
/**
* 设置 产品id
* @param productId
...
...
@@ -790,13 +905,39 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
return
this
;
}
/**
* 设置 本次访问深度
/**
* 设置 本次访问深度
* @param depthValue
*/
public
PageAccessDepthQuery
depthValue
(
Integer
depthValue
){
setDepthValue
(
depthValue
);
setDepthValue
(
depthValue
);
return
this
;
}
/**
* 设置 开始 本次访问深度
* @param depthValueStart
*/
public
PageAccessDepthQuery
depthValueStart
(
Integer
depthValueStart
){
this
.
depthValueStart
=
depthValueStart
;
return
this
;
}
/**
* 设置 结束 本次访问深度
* @param depthValueEnd
*/
public
PageAccessDepthQuery
depthValueEnd
(
Integer
depthValueEnd
){
this
.
depthValueEnd
=
depthValueEnd
;
return
this
;
}
/**
* 设置 增加 本次访问深度
* @param depthValueIncrement
*/
public
PageAccessDepthQuery
depthValueIncrement
(
Integer
depthValueIncrement
){
this
.
depthValueIncrement
=
depthValueIncrement
;
return
this
;
}
...
...
@@ -807,7 +948,16 @@ public class PageAccessDepthQuery extends PageAccessDepthEntity {
public
PageAccessDepthQuery
depthValueList
(
List
<
Integer
>
depthValueList
){
this
.
depthValueList
=
depthValueList
;
return
this
;
}
}
/**
* 设置 本次访问深度
* @param depthValueNotList
*/
public
PageAccessDepthQuery
depthValueNotList
(
List
<
Integer
>
depthValueNotList
){
this
.
depthValueNotList
=
depthValueNotList
;
return
this
;
}
/**
* 设置 创建用户
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessEntity.java
View file @
6744d973
...
...
@@ -10,12 +10,16 @@ import com.mortals.xhx.module.page.model.vo.PageAccessVo;
* 产品页面配置实体对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageAccessEntity
extends
PageAccessVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备编码
*/
private
String
deviceNum
;
/**
* 产品id
*/
...
...
@@ -41,6 +45,20 @@ public class PageAccessEntity extends PageAccessVo {
public
PageAccessEntity
(){}
/**
* 获取 设备编码
* @return String
*/
public
String
getDeviceNum
(){
return
deviceNum
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
void
setDeviceNum
(
String
deviceNum
){
this
.
deviceNum
=
deviceNum
;
}
/**
* 获取 产品id
* @return Long
*/
...
...
@@ -132,6 +150,7 @@ public class PageAccessEntity extends PageAccessVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",deviceNum:"
).
append
(
getDeviceNum
());
sb
.
append
(
",productId:"
).
append
(
getProductId
());
sb
.
append
(
",productName:"
).
append
(
getProductName
());
sb
.
append
(
",pageCode:"
).
append
(
getPageCode
());
...
...
@@ -142,6 +161,8 @@ public class PageAccessEntity extends PageAccessVo {
public
void
initAttrValue
(){
this
.
deviceNum
=
""
;
this
.
productId
=
null
;
this
.
productName
=
""
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageAccessQuery.java
View file @
6744d973
...
...
@@ -6,7 +6,7 @@ import com.mortals.xhx.module.page.model.PageAccessEntity;
* 产品页面配置查询对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageAccessQuery
extends
PageAccessEntity
{
/** 开始 序号,主键,自增长 */
...
...
@@ -24,6 +24,11 @@ public class PageAccessQuery extends PageAccessEntity {
/** 序号,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 设备编码 */
private
List
<
String
>
deviceNumList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceNumNotList
;
/** 开始 产品id */
private
Long
productIdStart
;
...
...
@@ -200,6 +205,38 @@ public class PageAccessQuery extends PageAccessEntity {
}
/**
* 获取 设备编码
* @return deviceNumList
*/
public
List
<
String
>
getDeviceNumList
(){
return
this
.
deviceNumList
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
void
setDeviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
}
/**
* 获取 设备编码
* @return deviceNumNotList
*/
public
List
<
String
>
getDeviceNumNotList
(){
return
this
.
deviceNumNotList
;
}
/**
* 设置 设备编码
* @param deviceNumNotList
*/
public
void
setDeviceNumNotList
(
List
<
String
>
deviceNumNotList
){
this
.
deviceNumNotList
=
deviceNumNotList
;
}
/**
* 获取 开始 产品id
* @return productIdStart
...
...
@@ -738,6 +775,25 @@ public class PageAccessQuery extends PageAccessEntity {
return
this
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
PageAccessQuery
deviceNum
(
String
deviceNum
){
setDeviceNum
(
deviceNum
);
return
this
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
PageAccessQuery
deviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
return
this
;
}
/**
* 设置 产品id
* @param productId
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageEventEntity.java
View file @
6744d973
...
...
@@ -10,12 +10,16 @@ import com.mortals.xhx.module.page.model.vo.PageEventVo;
* 页面事件记录实体对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageEventEntity
extends
PageEventVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备编码
*/
private
String
deviceNum
;
/**
* 产品id
*/
...
...
@@ -61,6 +65,20 @@ public class PageEventEntity extends PageEventVo {
public
PageEventEntity
(){}
/**
* 获取 设备编码
* @return String
*/
public
String
getDeviceNum
(){
return
deviceNum
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
void
setDeviceNum
(
String
deviceNum
){
this
.
deviceNum
=
deviceNum
;
}
/**
* 获取 产品id
* @return Long
*/
...
...
@@ -222,6 +240,7 @@ public class PageEventEntity extends PageEventVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",deviceNum:"
).
append
(
getDeviceNum
());
sb
.
append
(
",productId:"
).
append
(
getProductId
());
sb
.
append
(
",productName:"
).
append
(
getProductName
());
sb
.
append
(
",businessCode:"
).
append
(
getBusinessCode
());
...
...
@@ -237,6 +256,8 @@ public class PageEventEntity extends PageEventVo {
public
void
initAttrValue
(){
this
.
deviceNum
=
""
;
this
.
productId
=
null
;
this
.
productName
=
""
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageEventQuery.java
View file @
6744d973
...
...
@@ -6,7 +6,7 @@ import com.mortals.xhx.module.page.model.PageEventEntity;
* 页面事件记录查询对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageEventQuery
extends
PageEventEntity
{
/** 开始 序号,主键,自增长 */
...
...
@@ -24,6 +24,11 @@ public class PageEventQuery extends PageEventEntity {
/** 序号,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 设备编码 */
private
List
<
String
>
deviceNumList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceNumNotList
;
/** 开始 产品id */
private
Long
productIdStart
;
...
...
@@ -225,6 +230,38 @@ public class PageEventQuery extends PageEventEntity {
}
/**
* 获取 设备编码
* @return deviceNumList
*/
public
List
<
String
>
getDeviceNumList
(){
return
this
.
deviceNumList
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
void
setDeviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
}
/**
* 获取 设备编码
* @return deviceNumNotList
*/
public
List
<
String
>
getDeviceNumNotList
(){
return
this
.
deviceNumNotList
;
}
/**
* 设置 设备编码
* @param deviceNumNotList
*/
public
void
setDeviceNumNotList
(
List
<
String
>
deviceNumNotList
){
this
.
deviceNumNotList
=
deviceNumNotList
;
}
/**
* 获取 开始 产品id
* @return productIdStart
...
...
@@ -923,6 +960,25 @@ public class PageEventQuery extends PageEventEntity {
return
this
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
PageEventQuery
deviceNum
(
String
deviceNum
){
setDeviceNum
(
deviceNum
);
return
this
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
PageEventQuery
deviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
return
this
;
}
/**
* 设置 产品id
* @param productId
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageInfoEntity.java
View file @
6744d973
...
...
@@ -10,12 +10,16 @@ import com.mortals.xhx.module.page.model.vo.PageInfoVo;
* 产品页面配置实体对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageInfoEntity
extends
PageInfoVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备编码
*/
private
String
deviceNum
;
/**
* 产品id
*/
...
...
@@ -41,6 +45,20 @@ public class PageInfoEntity extends PageInfoVo {
public
PageInfoEntity
(){}
/**
* 获取 设备编码
* @return String
*/
public
String
getDeviceNum
(){
return
deviceNum
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
void
setDeviceNum
(
String
deviceNum
){
this
.
deviceNum
=
deviceNum
;
}
/**
* 获取 产品id
* @return Long
*/
...
...
@@ -132,6 +150,7 @@ public class PageInfoEntity extends PageInfoVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",deviceNum:"
).
append
(
getDeviceNum
());
sb
.
append
(
",productId:"
).
append
(
getProductId
());
sb
.
append
(
",productName:"
).
append
(
getProductName
());
sb
.
append
(
",pageCode:"
).
append
(
getPageCode
());
...
...
@@ -142,6 +161,8 @@ public class PageInfoEntity extends PageInfoVo {
public
void
initAttrValue
(){
this
.
deviceNum
=
""
;
this
.
productId
=
null
;
this
.
productName
=
""
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageInfoQuery.java
View file @
6744d973
...
...
@@ -6,7 +6,7 @@ import com.mortals.xhx.module.page.model.PageInfoEntity;
* 产品页面配置查询对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageInfoQuery
extends
PageInfoEntity
{
/** 开始 序号,主键,自增长 */
...
...
@@ -24,6 +24,11 @@ public class PageInfoQuery extends PageInfoEntity {
/** 序号,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 设备编码 */
private
List
<
String
>
deviceNumList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceNumNotList
;
/** 开始 产品id */
private
Long
productIdStart
;
...
...
@@ -190,6 +195,38 @@ public class PageInfoQuery extends PageInfoEntity {
}
/**
* 获取 设备编码
* @return deviceNumList
*/
public
List
<
String
>
getDeviceNumList
(){
return
this
.
deviceNumList
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
void
setDeviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
}
/**
* 获取 设备编码
* @return deviceNumNotList
*/
public
List
<
String
>
getDeviceNumNotList
(){
return
this
.
deviceNumNotList
;
}
/**
* 设置 设备编码
* @param deviceNumNotList
*/
public
void
setDeviceNumNotList
(
List
<
String
>
deviceNumNotList
){
this
.
deviceNumNotList
=
deviceNumNotList
;
}
/**
* 获取 开始 产品id
* @return productIdStart
...
...
@@ -679,6 +716,25 @@ public class PageInfoQuery extends PageInfoEntity {
return
this
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
PageInfoQuery
deviceNum
(
String
deviceNum
){
setDeviceNum
(
deviceNum
);
return
this
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
PageInfoQuery
deviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
return
this
;
}
/**
* 设置 产品id
* @param productId
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageRouteEntity.java
View file @
6744d973
...
...
@@ -10,12 +10,16 @@ import com.mortals.xhx.module.page.model.vo.PageRouteVo;
* 页面路径记录实体对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageRouteEntity
extends
PageRouteVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 设备编码
*/
private
String
deviceNum
;
/**
* 产品id
*/
...
...
@@ -45,6 +49,20 @@ public class PageRouteEntity extends PageRouteVo {
public
PageRouteEntity
(){}
/**
* 获取 设备编码
* @return String
*/
public
String
getDeviceNum
(){
return
deviceNum
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
void
setDeviceNum
(
String
deviceNum
){
this
.
deviceNum
=
deviceNum
;
}
/**
* 获取 产品id
* @return Long
*/
...
...
@@ -116,7 +134,7 @@ public class PageRouteEntity extends PageRouteVo {
}
/**
* 获取 目标页面名称
* @return
Integer
* @return
String
*/
public
String
getTargetName
(){
return
targetName
;
...
...
@@ -150,6 +168,7 @@ public class PageRouteEntity extends PageRouteVo {
public
String
toString
(){
StringBuilder
sb
=
new
StringBuilder
(
""
);
sb
.
append
(
",deviceNum:"
).
append
(
getDeviceNum
());
sb
.
append
(
",productId:"
).
append
(
getProductId
());
sb
.
append
(
",productName:"
).
append
(
getProductName
());
sb
.
append
(
",sourceCode:"
).
append
(
getSourceCode
());
...
...
@@ -161,6 +180,8 @@ public class PageRouteEntity extends PageRouteVo {
public
void
initAttrValue
(){
this
.
deviceNum
=
""
;
this
.
productId
=
null
;
this
.
productName
=
""
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/PageRouteQuery.java
View file @
6744d973
...
...
@@ -6,7 +6,7 @@ import com.mortals.xhx.module.page.model.PageRouteEntity;
* 页面路径记录查询对象
*
* @author zxfei
* @date 2023-04-1
0
* @date 2023-04-1
2
*/
public
class
PageRouteQuery
extends
PageRouteEntity
{
/** 开始 序号,主键,自增长 */
...
...
@@ -24,6 +24,11 @@ public class PageRouteQuery extends PageRouteEntity {
/** 序号,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 设备编码 */
private
List
<
String
>
deviceNumList
;
/** 设备编码排除列表 */
private
List
<
String
>
deviceNumNotList
;
/** 开始 产品id */
private
Long
productIdStart
;
...
...
@@ -59,13 +64,11 @@ public class PageRouteQuery extends PageRouteEntity {
/** 目标页面编码(路由)排除列表 */
private
List
<
String
>
targetCodeNotList
;
/** 目标页面名称列表 */
private
List
<
String
>
targetNameList
;
/** 目标页面名称 */
private
List
<
String
>
targetNameList
;
/** 目标页面名称排除列表 */
private
List
<
String
>
targetNameNotList
;
/** 开始 创建用户 */
private
Long
createUserIdStart
;
...
...
@@ -197,6 +200,38 @@ public class PageRouteQuery extends PageRouteEntity {
}
/**
* 获取 设备编码
* @return deviceNumList
*/
public
List
<
String
>
getDeviceNumList
(){
return
this
.
deviceNumList
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
void
setDeviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
}
/**
* 获取 设备编码
* @return deviceNumNotList
*/
public
List
<
String
>
getDeviceNumNotList
(){
return
this
.
deviceNumNotList
;
}
/**
* 设置 设备编码
* @param deviceNumNotList
*/
public
void
setDeviceNumNotList
(
List
<
String
>
deviceNumNotList
){
this
.
deviceNumNotList
=
deviceNumNotList
;
}
/**
* 获取 开始 产品id
* @return productIdStart
...
...
@@ -406,7 +441,6 @@ public class PageRouteQuery extends PageRouteEntity {
this
.
targetCodeNotList
=
targetCodeNotList
;
}
/**
* 获取 目标页面名称
* @return targetNameList
...
...
@@ -439,7 +473,6 @@ public class PageRouteQuery extends PageRouteEntity {
this
.
targetNameNotList
=
targetNameNotList
;
}
/**
* 获取 开始 创建用户
* @return createUserIdStart
...
...
@@ -720,6 +753,25 @@ public class PageRouteQuery extends PageRouteEntity {
return
this
;
}
/**
* 设置 设备编码
* @param deviceNum
*/
public
PageRouteQuery
deviceNum
(
String
deviceNum
){
setDeviceNum
(
deviceNum
);
return
this
;
}
/**
* 设置 设备编码
* @param deviceNumList
*/
public
PageRouteQuery
deviceNumList
(
List
<
String
>
deviceNumList
){
this
.
deviceNumList
=
deviceNumList
;
return
this
;
}
/**
* 设置 产品id
* @param productId
...
...
@@ -850,12 +902,13 @@ public class PageRouteQuery extends PageRouteEntity {
return
this
;
}
/**
* 设置 目标页面名称
/**
* 设置 目标页面名称
* @param targetName
*/
public
PageRouteQuery
targetName
(
String
targetName
){
setTargetName
(
targetName
);
setTargetName
(
targetName
);
return
this
;
}
...
...
@@ -866,16 +919,7 @@ public class PageRouteQuery extends PageRouteEntity {
public
PageRouteQuery
targetNameList
(
List
<
String
>
targetNameList
){
this
.
targetNameList
=
targetNameList
;
return
this
;
}
/**
* 设置 目标页面名称
* @param targetNameNotList
*/
public
PageRouteQuery
targetNameNotList
(
List
<
String
>
targetNameNotList
){
this
.
targetNameNotList
=
targetNameNotList
;
return
this
;
}
}
/**
* 设置 创建用户
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/model/pdu/BuryPointPdu.java
View file @
6744d973
...
...
@@ -11,6 +11,8 @@ import lombok.Data;
*/
@Data
public
class
BuryPointPdu
{
/** 设备编号 */
private
String
deviceNum
;
/*** 产品id */
private
Long
productId
;
/*** 产品名称 */
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageAccessDepthServiceImpl.java
View file @
6744d973
...
...
@@ -37,6 +37,7 @@ public class PageAccessDepthServiceImpl extends AbstractCRUDServiceImpl<PageAcce
return
null
;
}
PageAccessDepthEntity
entity
=
new
PageAccessDepthEntity
();
entity
.
setDeviceNum
(
pdu
.
getDeviceNum
());
entity
.
setProductId
(
pdu
.
getProductId
());
entity
.
setProductName
(
pdu
.
getProductName
());
entity
.
setPageCode
(
pdu
.
getPageCode
());
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageAccessServiceImpl.java
View file @
6744d973
...
...
@@ -37,6 +37,7 @@ public class PageAccessServiceImpl extends AbstractCRUDServiceImpl<PageAccessDao
return
null
;
}
PageAccessEntity
entity
=
new
PageAccessEntity
();
entity
.
setDeviceNum
(
pdu
.
getDeviceNum
());
entity
.
setProductId
(
pdu
.
getProductId
());
entity
.
setProductName
(
pdu
.
getProductName
());
entity
.
setPageCode
(
pdu
.
getPageCode
());
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageEventServiceImpl.java
View file @
6744d973
...
...
@@ -37,6 +37,7 @@ public class PageEventServiceImpl extends AbstractCRUDServiceImpl<PageEventDao,
return
null
;
}
PageEventEntity
entity
=
new
PageEventEntity
();
entity
.
setDeviceNum
(
pdu
.
getDeviceNum
());
entity
.
setProductId
(
pdu
.
getProductId
());
entity
.
setProductName
(
pdu
.
getProductName
());
entity
.
setPageCode
(
pdu
.
getPageCode
());
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/service/impl/PageRouteServiceImpl.java
View file @
6744d973
...
...
@@ -43,6 +43,7 @@ public class PageRouteServiceImpl extends AbstractCRUDServiceImpl<PageRouteDao,
return
null
;
}
PageRouteEntity
entity
=
new
PageRouteEntity
();
entity
.
setDeviceNum
(
pdu
.
getDeviceNum
());
entity
.
setProductId
(
pdu
.
getProductId
());
entity
.
setProductName
(
pdu
.
getProductName
());
entity
.
setSourceCode
(
pdu
.
getRouteInfo
().
getSourceCode
());
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/java/com/mortals/xhx/module/page/web/BuryPointController.java
View file @
6744d973
...
...
@@ -40,7 +40,6 @@ public class BuryPointController extends BaseJsonBodyController {
private
PageRouteService
pageRouteService
;
@PostMapping
({
"save"
})
@RepeatSubmit
@UnAuth
public
String
save
(
@RequestBody
BuryPointPdu
pdu
)
{
Map
<
String
,
Object
>
model
=
new
HashMap
();
...
...
This diff is collapsed.
Click to expand it.
portal-manager/src/main/resources/sqlmap/module/page/PageAccessDepthMapper.xml
View file @
6744d973
This diff is collapsed.
Click to expand it.
portal-manager/src/main/resources/sqlmap/module/page/PageAccessMapper.xml
View file @
6744d973
This diff is collapsed.
Click to expand it.
portal-manager/src/main/resources/sqlmap/module/page/PageEventMapper.xml
View file @
6744d973
This diff is collapsed.
Click to expand it.
portal-manager/src/main/resources/sqlmap/module/page/PageInfoMapper.xml
View file @
6744d973
This diff is collapsed.
Click to expand it.
portal-manager/src/main/resources/sqlmap/module/page/PageRouteMapper.xml
View file @
6744d973
This diff is collapsed.
Click to expand it.
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