Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-product
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-product
Commits
4122d703
Commit
4122d703
authored
Nov 27, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审核-产品上架信息
parent
a0a4faff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
1 deletions
+76
-1
yd-product-feign/src/main/java/com/yd/product/feign/dto/ApiProductLaunchDto.java
+15
-0
yd-product-service/src/main/java/com/yd/product/service/model/ProductLaunch.java
+61
-1
No files found.
yd-product-feign/src/main/java/com/yd/product/feign/dto/ApiProductLaunchDto.java
View file @
4122d703
...
...
@@ -67,6 +67,21 @@ public class ApiProductLaunchDto {
private
String
isHiddenPrice
;
/**
* 是否限购 0-否 1-是
*/
private
String
isPurchaseLimit
;
/**
* 限购日期单位 DAILY-每日 WEEKLY-每周 MONTHLY-每月 YEARLY-每年
*/
private
String
limitDateUnit
;
/**
* 限购数量
*/
private
Integer
limitQuantity
;
/**
* 上架到对应的项目列表
*/
private
List
<
String
>
projectBizIdList
;
...
...
yd-product-service/src/main/java/com/yd/product/service/model/ProductLaunch.java
View file @
4122d703
...
...
@@ -92,7 +92,67 @@ public class ProductLaunch implements Serializable {
private
String
isHiddenPrice
;
/**
* 状态:0-待审核 1-审核成功 2-审核失败 3-在售 4-停售 5-下架 6-预售
* 是否限购 0-否 1-是
*/
@TableField
(
"is_purchase_limit"
)
private
String
isPurchaseLimit
;
/**
* 限购日期单位 DAILY-每日 WEEKLY-每周 MONTHLY-每月 YEARLY-每年
*/
@TableField
(
"limit_date_unit"
)
private
String
limitDateUnit
;
/**
* 限购数量
*/
@TableField
(
"limit_quantity"
)
private
Integer
limitQuantity
;
/**
* 是否假一赔三 0-否 1-是
*/
@TableField
(
"is_pay_three"
)
private
String
isPayThree
;
/**
* 是否坏损包赔 0-否 1-是
*/
@TableField
(
"is_damaged"
)
private
String
isDamaged
;
/**
* 是否支持换货 0-否 1-是
*/
@TableField
(
"is_exchange"
)
private
String
isExchange
;
/**
* 7天无理由
*/
@TableField
(
"seven"
)
private
String
seven
;
/**
* 发货途径
*/
@TableField
(
"delivery_route"
)
private
String
deliveryRoute
;
/**
* 物流配送
*/
@TableField
(
"logistics_distribution"
)
private
String
logisticsDistribution
;
/**
* 售后说明
*/
@TableField
(
"after_sales_instructions"
)
private
String
afterSalesInstructions
;
/**
* 状态:DSH-待审核 CG-审核成功 SB-审核失败 ZS-在售 TS-停售 XJ-下架 YS-预售 DKS-待开售
*/
@TableField
(
"status"
)
private
String
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