Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
haoban3.0
haoban-manage3.0
Commits
edda8b6c
Commit
edda8b6c
authored
May 25, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自建类型字段处理
parent
a26a2167
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
YwWxEnterpriseDTO.java
...java/com/gic/haoban/manage/api/dto/YwWxEnterpriseDTO.java
+17
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/YwWxEnterpriseDTO.java
View file @
edda8b6c
...
...
@@ -42,11 +42,28 @@ public class YwWxEnterpriseDTO implements Serializable {
*/
private
Boolean
openMassFlag
;
/**
* 企微加密类型1待开发+第三方(都是明文),2待开发+第三方(都是密文),3待开发(明文)+第三方v密文),4待开发(密文)+第三方(明文),5自建应用
*/
private
Integer
wxSecurityType
;
/**
* 应用类型,0第三方 1自建
*/
private
Integer
appType
;
public
Integer
getWxSecurityType
()
{
return
wxSecurityType
;
}
public
void
setWxSecurityType
(
Integer
wxSecurityType
)
{
this
.
wxSecurityType
=
wxSecurityType
;
}
public
Integer
getAppType
()
{
if
(
this
.
wxSecurityType
==
5
){
this
.
appType
=
1
;
}
else
{
this
.
appType
=
0
;
}
return
appType
;
}
...
...
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