Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-enterprise-base
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
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
base_platform_enterprise
gic-enterprise-base
Commits
9994ee5a
Commit
9994ee5a
authored
Jan 08, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
二维码下载sdk
parent
7c95de5e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
140 additions
and
0 deletions
+140
-0
pom.xml
gic-enterprise-download/pom.xml
+5
-0
QrcodeContent.java
...load/src/main/java/com/gic/download/qo/QrcodeContent.java
+33
-0
QrcodeQO.java
...-download/src/main/java/com/gic/download/qo/QrcodeQO.java
+102
-0
QrcodeDownload.java
.../src/main/java/com/gic/download/utils/QrcodeDownload.java
+0
-0
No files found.
gic-enterprise-download/pom.xml
View file @
9994ee5a
...
...
@@ -84,6 +84,11 @@
<artifactId>
gic-platform-config
</artifactId>
<version>
${gic-platform-config}
</version>
</dependency>
<dependency>
<groupId>
com.gic
</groupId>
<artifactId>
gic-wechat-business-api
</artifactId>
<version>
${gic-wechat-business-api}
</version>
</dependency>
</dependencies>
<build>
...
...
gic-enterprise-download/src/main/java/com/gic/download/qo/QrcodeContent.java
0 → 100644
View file @
9994ee5a
package
com
.
gic
.
download
.
qo
;
import
java.io.Serializable
;
public
class
QrcodeContent
implements
Serializable
{
private
String
customParams
;
private
String
content
;
private
String
title
;
public
String
getCustomParams
()
{
return
customParams
;
}
public
void
setCustomParams
(
String
customParams
)
{
this
.
customParams
=
customParams
;
}
public
String
getContent
()
{
return
content
;
}
public
void
setContent
(
String
content
)
{
this
.
content
=
content
;
}
public
String
getTitle
()
{
return
title
;
}
public
void
setTitle
(
String
title
)
{
this
.
title
=
title
;
}
}
gic-enterprise-download/src/main/java/com/gic/download/qo/QrcodeQO.java
0 → 100644
View file @
9994ee5a
package
com
.
gic
.
download
.
qo
;
import
org.apache.commons.lang.StringUtils
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.List
;
public
class
QrcodeQO
implements
Serializable
{
private
Integer
h5
=
0
;
private
String
appletIds
;
private
String
fwhIds
;
private
String
scenesValueIds
;
private
Integer
type
;
//1临时二维码 2永久二维码
private
Date
endTime
;
private
List
<
QrcodeContent
>
content
;
private
String
callBackService
;
private
String
callBackMethod
;
private
String
fileName
;
public
Integer
getH5
()
{
return
h5
;
}
public
void
setH5
(
Integer
h5
)
{
if
(
h5
!=
null
&&
StringUtils
.
isNotBlank
(
h5
+
""
)){
this
.
h5
=
h5
;
}
}
public
String
getAppletIds
()
{
return
appletIds
;
}
public
void
setAppletIds
(
String
appletIds
)
{
this
.
appletIds
=
appletIds
;
}
public
String
getFwhIds
()
{
return
fwhIds
;
}
public
void
setFwhIds
(
String
fwhIds
)
{
this
.
fwhIds
=
fwhIds
;
}
public
String
getScenesValueIds
()
{
return
scenesValueIds
;
}
public
void
setScenesValueIds
(
String
scenesValueIds
)
{
this
.
scenesValueIds
=
scenesValueIds
;
}
public
Integer
getType
()
{
return
type
;
}
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
}
public
Date
getEndTime
()
{
return
endTime
;
}
public
void
setEndTime
(
Date
endTime
)
{
this
.
endTime
=
endTime
;
}
public
List
<
QrcodeContent
>
getContent
()
{
return
content
;
}
public
void
setContent
(
List
<
QrcodeContent
>
content
)
{
this
.
content
=
content
;
}
public
String
getCallBackService
()
{
return
callBackService
;
}
public
void
setCallBackService
(
String
callBackService
)
{
this
.
callBackService
=
callBackService
;
}
public
String
getCallBackMethod
()
{
return
callBackMethod
;
}
public
void
setCallBackMethod
(
String
callBackMethod
)
{
this
.
callBackMethod
=
callBackMethod
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
}
gic-enterprise-download/src/main/java/com/gic/download/utils/QrcodeDownload.java
0 → 100644
View file @
9994ee5a
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