diff --git a/app/src/main/java/com/example/citrusclient/Citrus.java b/app/src/main/java/com/example/citrusclient/Citrus.java index e5b600f..07637ce 100644 --- a/app/src/main/java/com/example/citrusclient/Citrus.java +++ b/app/src/main/java/com/example/citrusclient/Citrus.java @@ -11,6 +11,8 @@ private Integer curYear; private Integer curMonth; private Integer curDay; + private String curLookingAccountId; + private Integer curLookingBookId; //getter public String getToken(){ return token; @@ -22,6 +24,8 @@ public Integer getCurYear() {return curYear;} public Integer getCurMonth(){return curMonth;} public Integer getCurDay(){return curDay;} + public String getCurLookingAccountId(){return curLookingAccountId;} + public Integer getCurLookingBookId(){return curLookingBookId;} //setter public void setToken(String token){ @@ -34,4 +38,6 @@ public void setCurYear(Integer curYear){this.curYear = curYear;} public void setCurMonth(Integer curMonth){this.curMonth = curMonth;} public void setCurDay(Integer curDay){this.curDay = curDay;} + public void setCurLookingAccountId(String curLookingAccountId){this.curLookingAccountId = curLookingAccountId;} + public void setCurLookingBookId(Integer curLookingBookId){this.curLookingBookId = curLookingBookId;} }