Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ocrmanage
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
班迪
ocrmanage
Merge requests
!87
Feature/wzb
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/wzb
feature/wzb
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
王宗保
requested to merge
feature/wzb
into
develop
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
e16e26d1
2 commits,
2 years ago
2 files
+
5
−
5
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/seaskyocr/dto/invoice/HeHeInvoiceQry.java
+
3
−
3
Options
@@ -20,11 +20,11 @@ import javax.validation.constraints.NotNull;
@NoArgsConstructor
public
class
HeHeInvoiceQry
extends
BaseDto
{
@Not
Null
(
message
=
"发票代码不能为空"
)
//
@Not
Empty
( message = "发票代码不能为空")
@ApiModelProperty
(
value
=
"发票代码"
,
example
=
"1"
)
private
String
invoice_code
;
@Not
Null
(
message
=
"发票号码不能为空"
)
@Not
Empty
(
message
=
"发票号码不能为空"
)
@ApiModelProperty
(
value
=
"发票号码"
,
example
=
"1"
)
private
String
invoice_no
;
@@ -32,7 +32,7 @@ public class HeHeInvoiceQry extends BaseDto {
@ApiModelProperty
(
value
=
"开票日期"
,
example
=
"20190203"
)
private
Integer
invoice_date
;
@Not
Null
(
message
=
"发票名称不能为空"
)
@Not
Empty
(
message
=
"发票名称不能为空"
)
@ApiModelProperty
(
value
=
"发票名称"
,
example
=
"20190203"
)
private
String
invoice_name
;