Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RvApp
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
1
Merge Requests
1
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
lify
RvApp
Commits
4682f887
Commit
4682f887
authored
Jul 09, 2019
by
jianglx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改会员的价格为BigDecimal
parent
6992a861
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
MemberListBean.java
...mber/src/main/java/com/rv.member/bean/MemberListBean.java
+4
-3
No files found.
plugin_member/src/main/java/com/rv.member/bean/MemberListBean.java
View file @
4682f887
...
@@ -3,6 +3,7 @@ package com.rv.member.bean;
...
@@ -3,6 +3,7 @@ package com.rv.member.bean;
import
com.google.gson.annotations.SerializedName
;
import
com.google.gson.annotations.SerializedName
;
import
com.ruiwenliu.wrapper.base.BaseBean
;
import
com.ruiwenliu.wrapper.base.BaseBean
;
import
java.math.BigDecimal
;
import
java.util.List
;
import
java.util.List
;
public
class
MemberListBean
extends
BaseBean
{
public
class
MemberListBean
extends
BaseBean
{
...
@@ -34,7 +35,7 @@ public class MemberListBean extends BaseBean {
...
@@ -34,7 +35,7 @@ public class MemberListBean extends BaseBean {
private
long
endDate
;
private
long
endDate
;
private
int
discount
;
private
int
discount
;
private
int
isdel
;
private
int
isdel
;
private
int
price
;
private
BigDecimal
price
;
private
int
number
;
private
int
number
;
public
int
getId
()
{
public
int
getId
()
{
...
@@ -101,11 +102,11 @@ public class MemberListBean extends BaseBean {
...
@@ -101,11 +102,11 @@ public class MemberListBean extends BaseBean {
this
.
isdel
=
isdel
;
this
.
isdel
=
isdel
;
}
}
public
int
getPrice
()
{
public
BigDecimal
getPrice
()
{
return
price
;
return
price
;
}
}
public
void
setPrice
(
int
price
)
{
public
void
setPrice
(
BigDecimal
price
)
{
this
.
price
=
price
;
this
.
price
=
price
;
}
}
...
...
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