Advertisement
Guest User

HistoryDetailsModel

a guest
Sep 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.87 KB | None | 0 0
  1. package com.getmobileltd.cotenant.history;
  2.  
  3. public class HistoryDetailsModel {
  4.     private String amount;
  5.     private String fullDate;
  6.     private String halfDate;
  7.  
  8.     public String getHalfDate() {
  9.         return halfDate;
  10.     }
  11.  
  12.     public void setHalfDate(String halfDate) {
  13.         this.halfDate = halfDate;
  14.     }
  15.  
  16.     public HistoryDetailsModel(String amount, String fullDate, String halfDate) {
  17.         this.amount = amount;
  18.         this.fullDate = fullDate;
  19.         this.halfDate = halfDate;
  20.     }
  21.  
  22.     public String getAmount() {
  23.         return amount;
  24.     }
  25.  
  26.     public void setAmount(String amount) {
  27.         this.amount = amount;
  28.     }
  29.  
  30.     public String getFullDate() {
  31.         return fullDate;
  32.     }
  33.  
  34.     public void setFullDate(String fullDate) {
  35.         this.fullDate = fullDate;
  36.     }
  37.  
  38.     public HistoryDetailsModel() {
  39.  
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement