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
6b6e04e7
Commit
6b6e04e7
authored
Nov 14, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
677bdec6
788c8b2f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
526 additions
and
2 deletions
+526
-2
base-manager/src/main/java/com/mortals/xhx/module/app/model/AppQuery.java
.../main/java/com/mortals/xhx/module/app/model/AppQuery.java
+519
-1
base-manager/src/main/java/com/mortals/xhx/module/app/model/vo/AppVo.java
.../main/java/com/mortals/xhx/module/app/model/vo/AppVo.java
+6
-0
base-manager/src/test/java/com/mortals/httpclient/app/AppController.http
...c/test/java/com/mortals/httpclient/app/AppController.http
+1
-1
No files found.
base-manager/src/main/java/com/mortals/xhx/module/app/model/AppQuery.java
View file @
6b6e04e7
...
...
@@ -7,7 +7,7 @@ import com.mortals.xhx.module.app.model.AppEntity;
* 自助终端应用查询对象
*
* @author zxfei
* @date 2023-
01-07
* @date 2023-
11-14
*/
public
class
AppQuery
extends
AppEntity
{
/** 开始 主键ID,主键,自增长 */
...
...
@@ -22,6 +22,9 @@ public class AppQuery extends AppEntity {
/** 主键ID,主键,自增长列表 */
private
List
<
Long
>
idList
;
/** 主键ID,主键,自增长排除列表 */
private
List
<
Long
>
idNotList
;
/** 开始 站点Id */
private
Long
siteIdStart
;
...
...
@@ -34,21 +37,34 @@ public class AppQuery extends AppEntity {
/** 站点Id列表 */
private
List
<
Long
>
siteIdList
;
/** 站点Id排除列表 */
private
List
<
Long
>
siteIdNotList
;
/** 站点名称 */
private
List
<
String
>
siteNameList
;
/** 站点名称排除列表 */
private
List
<
String
>
siteNameNotList
;
/** 应用编码 */
private
List
<
String
>
appCodeList
;
/** 应用编码排除列表 */
private
List
<
String
>
appCodeNotList
;
/** 应用名称 */
private
List
<
String
>
appNameList
;
/** 应用名称排除列表 */
private
List
<
String
>
appNameNotList
;
/** 应用图标 */
private
List
<
String
>
appIconPathList
;
/** 应用图标排除列表 */
private
List
<
String
>
appIconPathNotList
;
/** 应用主题名称 */
private
List
<
String
>
appThemeNameList
;
/** 应用主题名称排除列表 */
private
List
<
String
>
appThemeNameNotList
;
/** 开始 类型(1.终端应用,2.移动端应用) */
private
Integer
typeStart
;
...
...
@@ -61,12 +77,19 @@ public class AppQuery extends AppEntity {
/** 类型(1.终端应用,2.移动端应用)列表 */
private
List
<
Integer
>
typeList
;
/** 类型(1.终端应用,2.移动端应用)排除列表 */
private
List
<
Integer
>
typeNotList
;
/** 链接地址 */
private
List
<
String
>
urlList
;
/** 链接地址排除列表 */
private
List
<
String
>
urlNotList
;
/** 服务接口地址 */
private
List
<
String
>
serviceApiList
;
/** 服务接口地址排除列表 */
private
List
<
String
>
serviceApiNotList
;
/** 开始 下发设备次数 */
private
Integer
downDevCountStart
;
...
...
@@ -79,6 +102,9 @@ public class AppQuery extends AppEntity {
/** 下发设备次数列表 */
private
List
<
Integer
>
downDevCountList
;
/** 下发设备次数排除列表 */
private
List
<
Integer
>
downDevCountNotList
;
/** 开始 是否上架(0.下架,1.上架) */
private
Integer
shelvesStart
;
...
...
@@ -91,6 +117,9 @@ public class AppQuery extends AppEntity {
/** 是否上架(0.下架,1.上架)列表 */
private
List
<
Integer
>
shelvesList
;
/** 是否上架(0.下架,1.上架)排除列表 */
private
List
<
Integer
>
shelvesNotList
;
/** 开始 类型(1.应用程序,2.url) */
private
Integer
appTypeStart
;
...
...
@@ -103,15 +132,24 @@ public class AppQuery extends AppEntity {
/** 类型(1.应用程序,2.url)列表 */
private
List
<
Integer
>
appTypeList
;
/** 类型(1.应用程序,2.url)排除列表 */
private
List
<
Integer
>
appTypeNotList
;
/** 文件名称 */
private
List
<
String
>
fileNameList
;
/** 文件名称排除列表 */
private
List
<
String
>
fileNameNotList
;
/** 文件相对路径地址 */
private
List
<
String
>
filePathList
;
/** 文件相对路径地址排除列表 */
private
List
<
String
>
filePathNotList
;
/** 文件部署路径地址 */
private
List
<
String
>
distributeFilePathList
;
/** 文件部署路径地址排除列表 */
private
List
<
String
>
distributeFilePathNotList
;
/** 开始 当前版本 */
private
Integer
versionStart
;
...
...
@@ -124,12 +162,19 @@ public class AppQuery extends AppEntity {
/** 当前版本列表 */
private
List
<
Integer
>
versionList
;
/** 当前版本排除列表 */
private
List
<
Integer
>
versionNotList
;
/** 简介 */
private
List
<
String
>
summaryList
;
/** 简介排除列表 */
private
List
<
String
>
summaryNotList
;
/** 更新说明 */
private
List
<
String
>
notesList
;
/** 更新说明排除列表 */
private
List
<
String
>
notesNotList
;
/** 开始 是否部署(0.否,1.是) */
private
Integer
distributeStart
;
...
...
@@ -142,6 +187,9 @@ public class AppQuery extends AppEntity {
/** 是否部署(0.否,1.是)列表 */
private
List
<
Integer
>
distributeList
;
/** 是否部署(0.否,1.是)排除列表 */
private
List
<
Integer
>
distributeNotList
;
/** 开始 是否数据更新(0.否,1.是) */
private
Integer
dataUpdateStart
;
...
...
@@ -154,6 +202,9 @@ public class AppQuery extends AppEntity {
/** 是否数据更新(0.否,1.是)列表 */
private
List
<
Integer
>
dataUpdateList
;
/** 是否数据更新(0.否,1.是)排除列表 */
private
List
<
Integer
>
dataUpdateNotList
;
/** 开始 创建时间 */
private
String
createTimeStart
;
...
...
@@ -172,6 +223,9 @@ public class AppQuery extends AppEntity {
/** 更新用户列表 */
private
List
<
Long
>
updateUserIdList
;
/** 更新用户排除列表 */
private
List
<
Long
>
updateUserIdNotList
;
/** 开始 更新时间 */
private
String
updateTimeStart
;
...
...
@@ -250,6 +304,23 @@ public class AppQuery extends AppEntity {
this
.
idList
=
idList
;
}
/**
* 获取 主键ID,主键,自增长
* @return idNotList
*/
public
List
<
Long
>
getIdNotList
(){
return
this
.
idNotList
;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
}
/**
* 获取 开始 站点Id
* @return siteIdStart
...
...
@@ -314,6 +385,23 @@ public class AppQuery extends AppEntity {
this
.
siteIdList
=
siteIdList
;
}
/**
* 获取 站点Id
* @return siteIdNotList
*/
public
List
<
Long
>
getSiteIdNotList
(){
return
this
.
siteIdNotList
;
}
/**
* 设置 站点Id
* @param siteIdNotList
*/
public
void
setSiteIdNotList
(
List
<
Long
>
siteIdNotList
){
this
.
siteIdNotList
=
siteIdNotList
;
}
/**
* 获取 站点名称
* @return siteNameList
...
...
@@ -329,6 +417,23 @@ public class AppQuery extends AppEntity {
public
void
setSiteNameList
(
List
<
String
>
siteNameList
){
this
.
siteNameList
=
siteNameList
;
}
/**
* 获取 站点名称
* @return siteNameNotList
*/
public
List
<
String
>
getSiteNameNotList
(){
return
this
.
siteNameNotList
;
}
/**
* 设置 站点名称
* @param siteNameNotList
*/
public
void
setSiteNameNotList
(
List
<
String
>
siteNameNotList
){
this
.
siteNameNotList
=
siteNameNotList
;
}
/**
* 获取 应用编码
* @return appCodeList
...
...
@@ -344,6 +449,23 @@ public class AppQuery extends AppEntity {
public
void
setAppCodeList
(
List
<
String
>
appCodeList
){
this
.
appCodeList
=
appCodeList
;
}
/**
* 获取 应用编码
* @return appCodeNotList
*/
public
List
<
String
>
getAppCodeNotList
(){
return
this
.
appCodeNotList
;
}
/**
* 设置 应用编码
* @param appCodeNotList
*/
public
void
setAppCodeNotList
(
List
<
String
>
appCodeNotList
){
this
.
appCodeNotList
=
appCodeNotList
;
}
/**
* 获取 应用名称
* @return appNameList
...
...
@@ -359,6 +481,23 @@ public class AppQuery extends AppEntity {
public
void
setAppNameList
(
List
<
String
>
appNameList
){
this
.
appNameList
=
appNameList
;
}
/**
* 获取 应用名称
* @return appNameNotList
*/
public
List
<
String
>
getAppNameNotList
(){
return
this
.
appNameNotList
;
}
/**
* 设置 应用名称
* @param appNameNotList
*/
public
void
setAppNameNotList
(
List
<
String
>
appNameNotList
){
this
.
appNameNotList
=
appNameNotList
;
}
/**
* 获取 应用图标
* @return appIconPathList
...
...
@@ -374,6 +513,23 @@ public class AppQuery extends AppEntity {
public
void
setAppIconPathList
(
List
<
String
>
appIconPathList
){
this
.
appIconPathList
=
appIconPathList
;
}
/**
* 获取 应用图标
* @return appIconPathNotList
*/
public
List
<
String
>
getAppIconPathNotList
(){
return
this
.
appIconPathNotList
;
}
/**
* 设置 应用图标
* @param appIconPathNotList
*/
public
void
setAppIconPathNotList
(
List
<
String
>
appIconPathNotList
){
this
.
appIconPathNotList
=
appIconPathNotList
;
}
/**
* 获取 应用主题名称
* @return appThemeNameList
...
...
@@ -389,6 +545,23 @@ public class AppQuery extends AppEntity {
public
void
setAppThemeNameList
(
List
<
String
>
appThemeNameList
){
this
.
appThemeNameList
=
appThemeNameList
;
}
/**
* 获取 应用主题名称
* @return appThemeNameNotList
*/
public
List
<
String
>
getAppThemeNameNotList
(){
return
this
.
appThemeNameNotList
;
}
/**
* 设置 应用主题名称
* @param appThemeNameNotList
*/
public
void
setAppThemeNameNotList
(
List
<
String
>
appThemeNameNotList
){
this
.
appThemeNameNotList
=
appThemeNameNotList
;
}
/**
* 获取 开始 类型(1.终端应用,2.移动端应用)
* @return typeStart
...
...
@@ -453,6 +626,23 @@ public class AppQuery extends AppEntity {
this
.
typeList
=
typeList
;
}
/**
* 获取 类型(1.终端应用,2.移动端应用)
* @return typeNotList
*/
public
List
<
Integer
>
getTypeNotList
(){
return
this
.
typeNotList
;
}
/**
* 设置 类型(1.终端应用,2.移动端应用)
* @param typeNotList
*/
public
void
setTypeNotList
(
List
<
Integer
>
typeNotList
){
this
.
typeNotList
=
typeNotList
;
}
/**
* 获取 链接地址
* @return urlList
...
...
@@ -468,6 +658,23 @@ public class AppQuery extends AppEntity {
public
void
setUrlList
(
List
<
String
>
urlList
){
this
.
urlList
=
urlList
;
}
/**
* 获取 链接地址
* @return urlNotList
*/
public
List
<
String
>
getUrlNotList
(){
return
this
.
urlNotList
;
}
/**
* 设置 链接地址
* @param urlNotList
*/
public
void
setUrlNotList
(
List
<
String
>
urlNotList
){
this
.
urlNotList
=
urlNotList
;
}
/**
* 获取 服务接口地址
* @return serviceApiList
...
...
@@ -483,6 +690,23 @@ public class AppQuery extends AppEntity {
public
void
setServiceApiList
(
List
<
String
>
serviceApiList
){
this
.
serviceApiList
=
serviceApiList
;
}
/**
* 获取 服务接口地址
* @return serviceApiNotList
*/
public
List
<
String
>
getServiceApiNotList
(){
return
this
.
serviceApiNotList
;
}
/**
* 设置 服务接口地址
* @param serviceApiNotList
*/
public
void
setServiceApiNotList
(
List
<
String
>
serviceApiNotList
){
this
.
serviceApiNotList
=
serviceApiNotList
;
}
/**
* 获取 开始 下发设备次数
* @return downDevCountStart
...
...
@@ -547,6 +771,23 @@ public class AppQuery extends AppEntity {
this
.
downDevCountList
=
downDevCountList
;
}
/**
* 获取 下发设备次数
* @return downDevCountNotList
*/
public
List
<
Integer
>
getDownDevCountNotList
(){
return
this
.
downDevCountNotList
;
}
/**
* 设置 下发设备次数
* @param downDevCountNotList
*/
public
void
setDownDevCountNotList
(
List
<
Integer
>
downDevCountNotList
){
this
.
downDevCountNotList
=
downDevCountNotList
;
}
/**
* 获取 开始 是否上架(0.下架,1.上架)
* @return shelvesStart
...
...
@@ -611,6 +852,23 @@ public class AppQuery extends AppEntity {
this
.
shelvesList
=
shelvesList
;
}
/**
* 获取 是否上架(0.下架,1.上架)
* @return shelvesNotList
*/
public
List
<
Integer
>
getShelvesNotList
(){
return
this
.
shelvesNotList
;
}
/**
* 设置 是否上架(0.下架,1.上架)
* @param shelvesNotList
*/
public
void
setShelvesNotList
(
List
<
Integer
>
shelvesNotList
){
this
.
shelvesNotList
=
shelvesNotList
;
}
/**
* 获取 开始 类型(1.应用程序,2.url)
* @return appTypeStart
...
...
@@ -675,6 +933,23 @@ public class AppQuery extends AppEntity {
this
.
appTypeList
=
appTypeList
;
}
/**
* 获取 类型(1.应用程序,2.url)
* @return appTypeNotList
*/
public
List
<
Integer
>
getAppTypeNotList
(){
return
this
.
appTypeNotList
;
}
/**
* 设置 类型(1.应用程序,2.url)
* @param appTypeNotList
*/
public
void
setAppTypeNotList
(
List
<
Integer
>
appTypeNotList
){
this
.
appTypeNotList
=
appTypeNotList
;
}
/**
* 获取 文件名称
* @return fileNameList
...
...
@@ -690,6 +965,23 @@ public class AppQuery extends AppEntity {
public
void
setFileNameList
(
List
<
String
>
fileNameList
){
this
.
fileNameList
=
fileNameList
;
}
/**
* 获取 文件名称
* @return fileNameNotList
*/
public
List
<
String
>
getFileNameNotList
(){
return
this
.
fileNameNotList
;
}
/**
* 设置 文件名称
* @param fileNameNotList
*/
public
void
setFileNameNotList
(
List
<
String
>
fileNameNotList
){
this
.
fileNameNotList
=
fileNameNotList
;
}
/**
* 获取 文件相对路径地址
* @return filePathList
...
...
@@ -705,6 +997,23 @@ public class AppQuery extends AppEntity {
public
void
setFilePathList
(
List
<
String
>
filePathList
){
this
.
filePathList
=
filePathList
;
}
/**
* 获取 文件相对路径地址
* @return filePathNotList
*/
public
List
<
String
>
getFilePathNotList
(){
return
this
.
filePathNotList
;
}
/**
* 设置 文件相对路径地址
* @param filePathNotList
*/
public
void
setFilePathNotList
(
List
<
String
>
filePathNotList
){
this
.
filePathNotList
=
filePathNotList
;
}
/**
* 获取 文件部署路径地址
* @return distributeFilePathList
...
...
@@ -720,6 +1029,23 @@ public class AppQuery extends AppEntity {
public
void
setDistributeFilePathList
(
List
<
String
>
distributeFilePathList
){
this
.
distributeFilePathList
=
distributeFilePathList
;
}
/**
* 获取 文件部署路径地址
* @return distributeFilePathNotList
*/
public
List
<
String
>
getDistributeFilePathNotList
(){
return
this
.
distributeFilePathNotList
;
}
/**
* 设置 文件部署路径地址
* @param distributeFilePathNotList
*/
public
void
setDistributeFilePathNotList
(
List
<
String
>
distributeFilePathNotList
){
this
.
distributeFilePathNotList
=
distributeFilePathNotList
;
}
/**
* 获取 开始 当前版本
* @return versionStart
...
...
@@ -784,6 +1110,23 @@ public class AppQuery extends AppEntity {
this
.
versionList
=
versionList
;
}
/**
* 获取 当前版本
* @return versionNotList
*/
public
List
<
Integer
>
getVersionNotList
(){
return
this
.
versionNotList
;
}
/**
* 设置 当前版本
* @param versionNotList
*/
public
void
setVersionNotList
(
List
<
Integer
>
versionNotList
){
this
.
versionNotList
=
versionNotList
;
}
/**
* 获取 简介
* @return summaryList
...
...
@@ -799,6 +1142,23 @@ public class AppQuery extends AppEntity {
public
void
setSummaryList
(
List
<
String
>
summaryList
){
this
.
summaryList
=
summaryList
;
}
/**
* 获取 简介
* @return summaryNotList
*/
public
List
<
String
>
getSummaryNotList
(){
return
this
.
summaryNotList
;
}
/**
* 设置 简介
* @param summaryNotList
*/
public
void
setSummaryNotList
(
List
<
String
>
summaryNotList
){
this
.
summaryNotList
=
summaryNotList
;
}
/**
* 获取 更新说明
* @return notesList
...
...
@@ -814,6 +1174,23 @@ public class AppQuery extends AppEntity {
public
void
setNotesList
(
List
<
String
>
notesList
){
this
.
notesList
=
notesList
;
}
/**
* 获取 更新说明
* @return notesNotList
*/
public
List
<
String
>
getNotesNotList
(){
return
this
.
notesNotList
;
}
/**
* 设置 更新说明
* @param notesNotList
*/
public
void
setNotesNotList
(
List
<
String
>
notesNotList
){
this
.
notesNotList
=
notesNotList
;
}
/**
* 获取 开始 是否部署(0.否,1.是)
* @return distributeStart
...
...
@@ -878,6 +1255,23 @@ public class AppQuery extends AppEntity {
this
.
distributeList
=
distributeList
;
}
/**
* 获取 是否部署(0.否,1.是)
* @return distributeNotList
*/
public
List
<
Integer
>
getDistributeNotList
(){
return
this
.
distributeNotList
;
}
/**
* 设置 是否部署(0.否,1.是)
* @param distributeNotList
*/
public
void
setDistributeNotList
(
List
<
Integer
>
distributeNotList
){
this
.
distributeNotList
=
distributeNotList
;
}
/**
* 获取 开始 是否数据更新(0.否,1.是)
* @return dataUpdateStart
...
...
@@ -942,6 +1336,23 @@ public class AppQuery extends AppEntity {
this
.
dataUpdateList
=
dataUpdateList
;
}
/**
* 获取 是否数据更新(0.否,1.是)
* @return dataUpdateNotList
*/
public
List
<
Integer
>
getDataUpdateNotList
(){
return
this
.
dataUpdateNotList
;
}
/**
* 设置 是否数据更新(0.否,1.是)
* @param dataUpdateNotList
*/
public
void
setDataUpdateNotList
(
List
<
Integer
>
dataUpdateNotList
){
this
.
dataUpdateNotList
=
dataUpdateNotList
;
}
/**
* 获取 开始 创建时间
* @return createTimeStart
...
...
@@ -1038,6 +1449,23 @@ public class AppQuery extends AppEntity {
this
.
updateUserIdList
=
updateUserIdList
;
}
/**
* 获取 更新用户
* @return updateUserIdNotList
*/
public
List
<
Long
>
getUpdateUserIdNotList
(){
return
this
.
updateUserIdNotList
;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public
void
setUpdateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
}
/**
* 获取 开始 更新时间
* @return updateTimeStart
...
...
@@ -1115,6 +1543,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public
AppQuery
idNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
return
this
;
}
/**
* 设置 站点Id
* @param siteId
...
...
@@ -1160,6 +1597,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 站点Id
* @param siteIdNotList
*/
public
AppQuery
siteIdNotList
(
List
<
Long
>
siteIdNotList
){
this
.
siteIdNotList
=
siteIdNotList
;
return
this
;
}
/**
* 设置 站点名称
...
...
@@ -1300,6 +1746,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 类型(1.终端应用,2.移动端应用)
* @param typeNotList
*/
public
AppQuery
typeNotList
(
List
<
Integer
>
typeNotList
){
this
.
typeNotList
=
typeNotList
;
return
this
;
}
/**
* 设置 链接地址
...
...
@@ -1383,6 +1838,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 下发设备次数
* @param downDevCountNotList
*/
public
AppQuery
downDevCountNotList
(
List
<
Integer
>
downDevCountNotList
){
this
.
downDevCountNotList
=
downDevCountNotList
;
return
this
;
}
/**
* 设置 是否上架(0.下架,1.上架)
* @param shelves
...
...
@@ -1428,6 +1892,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 是否上架(0.下架,1.上架)
* @param shelvesNotList
*/
public
AppQuery
shelvesNotList
(
List
<
Integer
>
shelvesNotList
){
this
.
shelvesNotList
=
shelvesNotList
;
return
this
;
}
/**
* 设置 类型(1.应用程序,2.url)
* @param appType
...
...
@@ -1473,6 +1946,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 类型(1.应用程序,2.url)
* @param appTypeNotList
*/
public
AppQuery
appTypeNotList
(
List
<
Integer
>
appTypeNotList
){
this
.
appTypeNotList
=
appTypeNotList
;
return
this
;
}
/**
* 设置 文件名称
...
...
@@ -1575,6 +2057,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 当前版本
* @param versionNotList
*/
public
AppQuery
versionNotList
(
List
<
Integer
>
versionNotList
){
this
.
versionNotList
=
versionNotList
;
return
this
;
}
/**
* 设置 简介
...
...
@@ -1658,6 +2149,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 是否部署(0.否,1.是)
* @param distributeNotList
*/
public
AppQuery
distributeNotList
(
List
<
Integer
>
distributeNotList
){
this
.
distributeNotList
=
distributeNotList
;
return
this
;
}
/**
* 设置 是否数据更新(0.否,1.是)
* @param dataUpdate
...
...
@@ -1703,6 +2203,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 是否数据更新(0.否,1.是)
* @param dataUpdateNotList
*/
public
AppQuery
dataUpdateNotList
(
List
<
Integer
>
dataUpdateNotList
){
this
.
dataUpdateNotList
=
dataUpdateNotList
;
return
this
;
}
/**
* 设置 更新用户
...
...
@@ -1749,6 +2258,15 @@ public class AppQuery extends AppEntity {
return
this
;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public
AppQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
return
this
;
}
/**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
...
...
base-manager/src/main/java/com/mortals/xhx/module/app/model/vo/AppVo.java
View file @
6b6e04e7
...
...
@@ -55,4 +55,10 @@ public class AppVo extends BaseEntityLong {
*/
private
Long
targetAppId
;
/** 类型(1.应用程序,2.url)列表 */
private
List
<
Integer
>
appTypeList
;
/** 类型(1.应用程序,2.url)排除列表 */
private
List
<
Integer
>
appTypeNotList
;
}
\ No newline at end of file
base-manager/src/test/java/com/mortals/httpclient/app/AppController.http
View file @
6b6e04e7
...
...
@@ -25,7 +25,7 @@ Content-Type: application/json
{"siteId":"22","page":1,"size":-1}
{"siteId":"22",
appTypeList,
"page":1,"size":-1}
###自助终端应用更新与保存
...
...
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