Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
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
徐少华
midjourney-proxy
Commits
22119ffe
Commit
22119ffe
authored
Nov 17, 2020
by
桂前礼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: [1003840] 抖音小店运营端后台
parent
9cd243ed
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
176 additions
and
0 deletions
+176
-0
oauth.properties
...ud-common-config/src/main/resources.perf/oauth.properties
+5
-0
oauth.properties
...ud-common-config/src/main/resources.prod/oauth.properties
+5
-0
oauth.properties
...ud-common-config/src/main/resources.test/oauth.properties
+5
-0
oauth.properties
pcloud-common-config/src/main/resources.uat/oauth.properties
+5
-0
MQQueueConstant.java
...java/com/pcloud/common/core/constant/MQQueueConstant.java
+5
-0
MQTopicProducer.java
...java/com/pcloud/common/core/constant/MQTopicProducer.java
+5
-0
ProductCrawlerDTO.java
...in/java/com/pcloud/common/core/dto/ProductCrawlerDTO.java
+111
-0
ProductCrawlerTaskDTO.java
...ava/com/pcloud/common/core/dto/ProductCrawlerTaskDTO.java
+35
-0
No files found.
pcloud-common-config/src/main/resources.perf/oauth.properties
0 → 100644
View file @
22119ffe
# 抖店工具型应用 RAYS带货 oauth 配置
tiktokShop.appKey
=
6895981804101076487
tiktokShop.appSecret
=
2a2fbb79-a6d2-41e7-abf0-c9cf0575d5de
tiktokShop.serviceId
=
4957
pcloud-common-config/src/main/resources.prod/oauth.properties
0 → 100644
View file @
22119ffe
# 抖店工具型应用 RAYS带货 oauth 配置
tiktokShop.appKey
=
6891458366200776199
tiktokShop.appSecret
=
b43c9aa7-cd46-42de-8fc9-5243854504fe
tiktokShop.serviceId
=
4747
pcloud-common-config/src/main/resources.test/oauth.properties
0 → 100644
View file @
22119ffe
# 抖店工具型应用 RAYS带货 oauth 配置
tiktokShop.appKey
=
6895981804101076487
tiktokShop.appSecret
=
2a2fbb79-a6d2-41e7-abf0-c9cf0575d5de
tiktokShop.serviceId
=
4957
pcloud-common-config/src/main/resources.uat/oauth.properties
0 → 100644
View file @
22119ffe
# 抖店工具型应用 RAYS带货 oauth 配置
tiktokShop.appKey
=
6895987140509828622
tiktokShop.appSecret
=
47e0f16b-155b-4385-9541-e5d6fe6e158f
tiktokShop.serviceId
=
4956
pcloud-common-core/src/main/java/com/pcloud/common/core/constant/MQQueueConstant.java
View file @
22119ffe
...
@@ -187,4 +187,9 @@ public class MQQueueConstant {
...
@@ -187,4 +187,9 @@ public class MQQueueConstant {
* 红榜做书任务
* 红榜做书任务
*/
*/
public
static
final
String
BOOKTASK
=
"booktaskQueue"
;
public
static
final
String
BOOKTASK
=
"booktaskQueue"
;
/**
* 商品信息爬取功能
*/
public
static
final
String
PRODUCT_CRAWLER
=
"productCrawlerQueue"
;
}
}
pcloud-common-core/src/main/java/com/pcloud/common/core/constant/MQTopicProducer.java
View file @
22119ffe
...
@@ -431,4 +431,9 @@ public class MQTopicProducer {
...
@@ -431,4 +431,9 @@ public class MQTopicProducer {
*/
*/
public
static
final
String
TOOL_PAY
=
"topic.toolPay"
;
public
static
final
String
TOOL_PAY
=
"topic.toolPay"
;
/**
* 淘宝天猫商品信息爬取
*/
public
static
final
String
CRAWLER_RESULT
=
"topic.productCrawlerResult"
;
}
}
pcloud-common-core/src/main/java/com/pcloud/common/core/dto/ProductCrawlerDTO.java
0 → 100644
View file @
22119ffe
package
com
.
pcloud
.
common
.
core
.
dto
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Getter
;
import
lombok.NoArgsConstructor
;
import
lombok.Setter
;
import
lombok.ToString
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.util.Date
;
/**
* 商品信息爬取DTO
*
* @author guiq
* @version 1.0
* @since 2020/11/17
*/
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString
public
class
ProductCrawlerDTO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* itemID
*/
private
Long
recordId
;
/**
* 商品名称
*/
private
String
name
;
/**
* 商品图片
*/
private
String
pic
;
/**
* 预览图1
*/
private
String
gallery1
;
/**
* 预览图2
*/
private
String
gallery2
;
/**
* 预览图3
*/
private
String
gallery3
;
/**
* 预览图4
*/
private
String
gallery4
;
/**
* 预览图5
*/
private
String
gallery5
;
/**
* 价格
*/
private
BigDecimal
price
;
/**
* 促销价
*/
private
BigDecimal
promotionalPrice
;
/**
* 支持的支付方式
*/
private
String
payMethod
;
/**
* 承诺服务
*/
private
String
servePromise
;
/**
* 商品描述详情
*/
private
String
description
;
/**
* 创建时间
*/
private
Date
createTime
;
/**
* 更新时间
*/
private
Date
updateTime
;
/**
* 任务状态
*/
private
Integer
status
;
}
pcloud-common-core/src/main/java/com/pcloud/common/core/dto/ProductCrawlerTaskDTO.java
0 → 100644
View file @
22119ffe
package
com
.
pcloud
.
common
.
core
.
dto
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Getter
;
import
lombok.NoArgsConstructor
;
import
lombok.Setter
;
import
lombok.ToString
;
import
java.io.Serializable
;
/**
* 任务爬取
*
* @author guiq
* @version 1.0
* @since 2020/11/17
*/
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString
public
class
ProductCrawlerTaskDTO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
610439747037622208L
;
private
Long
taskId
;
private
Long
createUser
;
private
String
url
;
}
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