记得上下班打卡 | 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
958c62ba
Commit
958c62ba
authored
Feb 14, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~API:店铺认证+参数校验;
parent
cc665dbe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
GoblinStoreMgtCertificationParam.java
...e/goblin/dto/manage/GoblinStoreMgtCertificationParam.java
+6
-1
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/manage/GoblinStoreMgtCertificationParam.java
View file @
958c62ba
...
...
@@ -8,6 +8,7 @@ import lombok.Data;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.Pattern
;
import
javax.validation.constraints.Size
;
@ApiModel
(
value
=
"GoblinStoreMgtCertificationParam"
,
description
=
"店铺认证:认证资料入参"
)
@Data
...
...
@@ -23,8 +24,10 @@ public class GoblinStoreMgtCertificationParam implements java.io.Serializable {
@Pattern
(
regexp
=
"\\b(1)\\b"
,
message
=
"证件类型无效"
)
private
String
personCertType
;
@ApiModelProperty
(
position
=
13
,
required
=
true
,
value
=
"证件姓名[32]"
,
example
=
"张三"
)
@Size
(
max
=
32
,
message
=
"证件姓名长度超限"
)
private
String
personName
;
@ApiModelProperty
(
position
=
14
,
required
=
true
,
value
=
"证件号码[32]"
,
example
=
"111111111111111111"
)
@Size
(
max
=
32
,
message
=
"证件号码位数超限"
)
private
String
personCertCode
;
@ApiModelProperty
(
position
=
15
,
required
=
true
,
value
=
"证件有效期[YYYY-MM-DD]"
,
example
=
"2022-12-31"
)
@Pattern
(
regexp
=
LnsRegex
.
Valid
.
DATETIME_YMD
,
message
=
"证件有效期格式有误"
)
...
...
@@ -56,8 +59,10 @@ public class GoblinStoreMgtCertificationParam implements java.io.Serializable {
private
String
busAddress
;
@ApiModelProperty
(
position
=
26
,
required
=
false
,
value
=
"商户名称[64]"
,
example
=
"北京XXX服装贸易有限公司"
)
@Size
(
max
=
64
,
message
=
"商户名称长度超限"
)
private
String
busName
;
@ApiModelProperty
(
position
=
27
,
required
=
false
,
value
=
"统一社会信用代码[64]"
,
example
=
"90000000000000005"
)
@ApiModelProperty
(
position
=
27
,
required
=
false
,
value
=
"统一社会信用代码[32]"
,
example
=
"90000000000000005"
)
@Size
(
max
=
32
,
message
=
"统一社会信用代码位数超限"
)
private
String
busCertCode
;
@ApiModelProperty
(
position
=
28
,
required
=
false
,
value
=
"营业执照有效期[YYYY-MM-DD]"
,
example
=
"2022-12-31"
)
@Pattern
(
regexp
=
LnsRegex
.
Valid
.
DATETIME_YMD
,
message
=
"营业执照有效期格式有误"
)
...
...
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