| | |
| | | |
| | | private double money; |
| | | |
| | | private String link; |
| | | |
| | | private String communityId; |
| | | |
| | | private String remark; |
| | | |
| | | public DeductionIntegralDto(int integral, double money) { |
| | | this.integral = integral; |
| | | this.money = money; |
| | |
| | | public void setMoney(double money) { |
| | | this.money = money; |
| | | } |
| | | |
| | | public String getLink() { |
| | | return link; |
| | | } |
| | | |
| | | public void setLink(String link) { |
| | | this.link = link; |
| | | } |
| | | |
| | | public String getCommunityId() { |
| | | return communityId; |
| | | } |
| | | |
| | | public void setCommunityId(String communityId) { |
| | | this.communityId = communityId; |
| | | } |
| | | |
| | | public String getRemark() { |
| | | return remark; |
| | | } |
| | | |
| | | public void setRemark(String remark) { |
| | | this.remark = remark; |
| | | } |
| | | } |