Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
customer-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QG
customer-service
Commits
bedeb5db
Commit
bedeb5db
authored
Feb 21, 2022
by
yexiong.wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edit
parent
c737e98c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
ApplyBill.java
...java/cn/quantgroup/customer/rest/param/vcc/ApplyBill.java
+10
-0
No files found.
src/main/java/cn/quantgroup/customer/rest/param/vcc/ApplyBill.java
View file @
bedeb5db
...
@@ -8,4 +8,14 @@ import java.math.BigDecimal;
...
@@ -8,4 +8,14 @@ import java.math.BigDecimal;
public
class
ApplyBill
{
public
class
ApplyBill
{
private
Long
billId
;
private
Long
billId
;
private
BigDecimal
amount
;
private
BigDecimal
amount
;
public
boolean
equals
(
ApplyBill
applyBill
){
if
(
applyBill
==
null
){
return
false
;
}
if
(
applyBill
.
getBillId
()
==
this
.
getBillId
()
||
applyBill
.
getAmount
().
compareTo
(
this
.
getAmount
())
==
0
){
return
true
;
}
return
false
;
}
}
}
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