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
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
haoban3.0
haoban-manage3.0
Commits
c415735b
Commit
c415735b
authored
Oct 31, 2023
by
songyinghui
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature-content5' into developer
parents
77a42885
0757de97
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
96 additions
and
0 deletions
+96
-0
ContentAccountController.java
...nage/web/controller/content/ContentAccountController.java
+1
-0
AccountGenerateQrCodeQo.java
...anage/web/qo/content/account/AccountGenerateQrCodeQo.java
+13
-0
CloudVideoInfoVo.java
.../com/gic/haoban/manage/web/vo/video/CloudVideoInfoVo.java
+82
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/content/ContentAccountController.java
View file @
c415735b
...
...
@@ -89,6 +89,7 @@ public class ContentAccountController {
AccountGenerateQrCodeQDTO
accountGenerateQrCodeQDTO
=
new
AccountGenerateQrCodeQDTO
();
accountGenerateQrCodeQDTO
.
setEnterpriseId
(
accountGenerateQrCodeQo
.
getEnterpriseId
());
accountGenerateQrCodeQDTO
.
setSourceType
(
ContentAccountQrCodeSourceType
.
HAOBAN
.
getCode
());
accountGenerateQrCodeQDTO
.
setKey
(
accountGenerateQrCodeQo
.
getKey
());
ServiceResponse
<
AccountAuthorizeDTO
>
serviceResponse
=
contentAccountApiService
.
generateQrCode
(
accountGenerateQrCodeQDTO
);
if
(!
serviceResponse
.
isSuccess
())
{
return
RestResponse
.
failure
(
"500"
,
"生成二维码异常"
);
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/content/account/AccountGenerateQrCodeQo.java
View file @
c415735b
...
...
@@ -25,6 +25,11 @@ public class AccountGenerateQrCodeQo implements Serializable {
*/
private
String
clerkId
;
/**
* 二维码key
*/
private
String
key
;
public
String
getEnterpriseId
()
{
return
enterpriseId
;
}
...
...
@@ -48,4 +53,12 @@ public class AccountGenerateQrCodeQo implements Serializable {
public
void
setClerkId
(
String
clerkId
)
{
this
.
clerkId
=
clerkId
;
}
public
String
getKey
()
{
return
key
;
}
public
void
setKey
(
String
key
)
{
this
.
key
=
key
;
}
}
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/video/CloudVideoInfoVo.java
View file @
c415735b
...
...
@@ -12,6 +12,7 @@ import java.util.Date;
public
class
CloudVideoInfoVo
implements
Serializable
{
/**
* 视频库id
*/
...
...
@@ -80,6 +81,39 @@ public class CloudVideoInfoVo implements Serializable {
*/
private
Integer
duration
;
/**
* 视频比例
*/
private
String
spare
;
/**
* 账户类型
* 0 超管
* 1 导购
* 2 区经
*/
private
Integer
userType
;
/**
* 用户id
*/
private
String
userId
;
/**
* 导购code
*/
private
String
userCode
;
/**
* 用户昵称
*/
private
String
userName
;
/**
* 视频所属分组链
*/
private
String
groupName
;
public
String
getId
()
{
return
id
;
}
...
...
@@ -183,4 +217,52 @@ public class CloudVideoInfoVo implements Serializable {
public
void
setDuration
(
Integer
duration
)
{
this
.
duration
=
duration
;
}
public
String
getSpare
()
{
return
spare
;
}
public
void
setSpare
(
String
spare
)
{
this
.
spare
=
spare
;
}
public
Integer
getUserType
()
{
return
userType
;
}
public
void
setUserType
(
Integer
userType
)
{
this
.
userType
=
userType
;
}
public
String
getUserId
()
{
return
userId
;
}
public
void
setUserId
(
String
userId
)
{
this
.
userId
=
userId
;
}
public
String
getUserCode
()
{
return
userCode
;
}
public
void
setUserCode
(
String
userCode
)
{
this
.
userCode
=
userCode
;
}
public
String
getUserName
()
{
return
userName
;
}
public
void
setUserName
(
String
userName
)
{
this
.
userName
=
userName
;
}
public
String
getGroupName
()
{
return
groupName
;
}
public
void
setGroupName
(
String
groupName
)
{
this
.
groupName
=
groupName
;
}
}
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