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
758ba9f2
Commit
758ba9f2
authored
Oct 30, 2023
by
王祖波
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature-content5' into developer
parents
460e4d36
cd094704
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
ContentAIController.java
...an/manage/web/controller/content/ContentAIController.java
+1
-0
CmeExportVideoQO.java
...gic/haoban/manage/web/qo/content/ai/CmeExportVideoQO.java
+13
-0
AccountAuthorizeVo.java
...ban/manage/web/vo/content/account/AccountAuthorizeVo.java
+15
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/content/ContentAIController.java
View file @
758ba9f2
...
@@ -164,6 +164,7 @@ public class ContentAIController {
...
@@ -164,6 +164,7 @@ public class ContentAIController {
exportVideoQDTO
.
setUserId
(
cmeExportVideo
.
getClerkId
());
exportVideoQDTO
.
setUserId
(
cmeExportVideo
.
getClerkId
());
exportVideoQDTO
.
setUserCode
(
cmeExportVideo
.
getClerkCode
());
exportVideoQDTO
.
setUserCode
(
cmeExportVideo
.
getClerkCode
());
exportVideoQDTO
.
setUserName
(
cmeExportVideo
.
getClerkName
());
exportVideoQDTO
.
setUserName
(
cmeExportVideo
.
getClerkName
());
exportVideoQDTO
.
setName
(
cmeExportVideo
.
getName
());
CmeExportVideoQDTO
cmeExportVideoQDTO
=
EntityUtil
.
changeEntityByJSON
(
CmeExportVideoQDTO
.
class
,
cmeExportVideo
);
CmeExportVideoQDTO
cmeExportVideoQDTO
=
EntityUtil
.
changeEntityByJSON
(
CmeExportVideoQDTO
.
class
,
cmeExportVideo
);
cmeExportVideoQDTO
.
setFactoryCode
(
factoryCode
);
cmeExportVideoQDTO
.
setFactoryCode
(
factoryCode
);
try
{
try
{
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/content/ai/CmeExportVideoQO.java
View file @
758ba9f2
...
@@ -54,6 +54,11 @@ public class CmeExportVideoQO extends CmeExportVideo implements Serializable {
...
@@ -54,6 +54,11 @@ public class CmeExportVideoQO extends CmeExportVideo implements Serializable {
*/
*/
private
String
clerkName
;
private
String
clerkName
;
/**
* 父级id (视频所属的分组id)
*/
private
String
parentId
;
public
Long
getContentTemplateId
()
{
public
Long
getContentTemplateId
()
{
return
contentTemplateId
;
return
contentTemplateId
;
}
}
...
@@ -117,4 +122,12 @@ public class CmeExportVideoQO extends CmeExportVideo implements Serializable {
...
@@ -117,4 +122,12 @@ public class CmeExportVideoQO extends CmeExportVideo implements Serializable {
public
void
setClerkName
(
String
clerkName
)
{
public
void
setClerkName
(
String
clerkName
)
{
this
.
clerkName
=
clerkName
;
this
.
clerkName
=
clerkName
;
}
}
public
String
getParentId
()
{
return
parentId
;
}
public
void
setParentId
(
String
parentId
)
{
this
.
parentId
=
parentId
;
}
}
}
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/content/account/AccountAuthorizeVo.java
View file @
758ba9f2
...
@@ -20,6 +20,13 @@ public class AccountAuthorizeVo implements Serializable {
...
@@ -20,6 +20,13 @@ public class AccountAuthorizeVo implements Serializable {
*/
*/
private
String
qrCode
;
private
String
qrCode
;
/**
* 状态
* 1 初始化中 (此时携带key轮询生成二维码)
* 2 已完成 (此时会返回二维码数据)
*/
private
Integer
status
;
public
String
getKey
()
{
public
String
getKey
()
{
return
key
;
return
key
;
}
}
...
@@ -35,4 +42,12 @@ public class AccountAuthorizeVo implements Serializable {
...
@@ -35,4 +42,12 @@ public class AccountAuthorizeVo implements Serializable {
public
void
setQrCode
(
String
qrCode
)
{
public
void
setQrCode
(
String
qrCode
)
{
this
.
qrCode
=
qrCode
;
this
.
qrCode
=
qrCode
;
}
}
public
Integer
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
}
}
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