记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
07da175c
Commit
07da175c
authored
May 09, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改 接收参数文档
parent
0edadc67
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
+13
-13
GoblinListCreateItemParam.java
...idnet/service/goblin/param/GoblinListCreateItemParam.java
+6
-6
GoblinListCreateParam.java
...liquidnet/service/goblin/param/GoblinListCreateParam.java
+5
-5
GoblinListUpdateParam.java
...liquidnet/service/goblin/param/GoblinListUpdateParam.java
+2
-2
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/GoblinListCreateItemParam.java
View file @
07da175c
...
...
@@ -8,23 +8,23 @@ import java.math.BigDecimal;
@Data
public
class
GoblinListCreateItemParam
{
@ApiModelProperty
(
value
=
"spuId"
)
@ApiModelProperty
(
value
=
"spuId"
,
required
=
true
)
@NotNull
(
message
=
"spuId不能为空"
)
private
String
spuId
;
@ApiModelProperty
(
value
=
"skuId"
)
@ApiModelProperty
(
value
=
"skuId"
,
required
=
true
)
@NotNull
(
message
=
"skuId不能为空"
)
private
String
skuId
;
@ApiModelProperty
(
value
=
"android价格"
)
@ApiModelProperty
(
value
=
"android价格"
,
required
=
true
)
@NotNull
(
message
=
"price不能为空"
)
private
BigDecimal
price
;
@ApiModelProperty
(
value
=
"库存"
)
@ApiModelProperty
(
value
=
"库存"
,
required
=
true
)
@NotNull
(
message
=
"库存不能为空"
)
private
Integer
skuStock
;
@ApiModelProperty
(
value
=
"苹果价格"
)
@ApiModelProperty
(
value
=
"苹果价格"
,
required
=
true
)
@NotNull
(
message
=
"苹果价格不能为空"
)
private
BigDecimal
priceV
;
@ApiModelProperty
(
value
=
"苹果价格id"
)
@ApiModelProperty
(
value
=
"苹果价格id"
,
required
=
true
)
@NotNull
(
message
=
"苹果价格id不能为空"
)
private
String
productId
;
}
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/GoblinListCreateParam.java
View file @
07da175c
...
...
@@ -8,18 +8,18 @@ import java.util.List;
@Data
public
class
GoblinListCreateParam
{
@ApiModelProperty
(
value
=
"优先购名称"
)
@ApiModelProperty
(
value
=
"优先购名称"
,
required
=
true
)
@NotNull
(
message
=
"优先购名称不能为空"
)
private
String
name
;
@ApiModelProperty
(
value
=
"优先购类型[0-会员|1-指定用户]"
)
@ApiModelProperty
(
value
=
"优先购类型[0-会员|1-指定用户]"
,
required
=
true
)
@NotNull
(
message
=
"优先购类型不能为空"
)
private
Integer
whiteType
;
@ApiModelProperty
(
value
=
"标签[0-提前购买|1-分段购买]"
)
@ApiModelProperty
(
value
=
"标签[0-提前购买|1-分段购买]"
,
required
=
true
)
@NotNull
(
message
=
"标签类型不能为空"
)
private
Integer
tagType
;
@ApiModelProperty
(
value
=
"优先购文件地址"
)
private
String
whiteUrl
;
@ApiModelProperty
(
value
=
"开始时间"
)
@ApiModelProperty
(
value
=
"开始时间"
,
required
=
true
)
@NotNull
(
message
=
"开始时间不能为空"
)
private
String
timeStart
;
@ApiModelProperty
(
value
=
"结束时间"
)
...
...
@@ -30,6 +30,6 @@ public class GoblinListCreateParam {
private
String
blackName
;
@ApiModelProperty
(
value
=
"白名单文件名称"
)
private
String
whiteName
;
@ApiModelProperty
(
value
=
"商品数据"
)
@ApiModelProperty
(
value
=
"商品数据"
,
required
=
true
)
private
List
<
GoblinListCreateItemParam
>
itemParams
;
}
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/GoblinListUpdateParam.java
View file @
07da175c
...
...
@@ -8,10 +8,10 @@ import java.util.List;
@Data
public
class
GoblinListUpdateParam
{
@ApiModelProperty
(
value
=
"名单id"
)
@ApiModelProperty
(
value
=
"名单id"
,
required
=
true
)
@NotNull
(
message
=
"名单id不能为空"
)
private
String
listId
;
@ApiModelProperty
(
value
=
"优先购类型[0-会员|1-指定用户]"
)
@ApiModelProperty
(
value
=
"优先购类型[0-会员|1-指定用户]"
,
required
=
true
)
@NotNull
(
message
=
"优先购类型不能为空"
)
private
Integer
whiteType
;
@ApiModelProperty
(
value
=
"优先购文件地址"
)
...
...
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