forked from hzuapps/android-labs-2020
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hzuapps#5 hzuapps#21 第5次实验
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
package edu.hzuapps.androidlabs.entity; | ||
|
||
public class Shop { | ||
private Integer id; | ||
private String type; | ||
private Integer money; | ||
private String time; | ||
private String Note; | ||
|
||
|
||
public Shop(Integer id, String type, String time, Integer money, String note) { | ||
this.id = id; | ||
this.type = type; | ||
this.money = money; | ||
this.time = time; | ||
Note = note; | ||
} | ||
|
||
public Integer getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Integer id) { | ||
this.id = id; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public Integer getMoney() { | ||
return money; | ||
} | ||
|
||
public void setMoney(Integer money) { | ||
this.money = money; | ||
} | ||
|
||
public String getTime() { | ||
return time; | ||
} | ||
|
||
public void setTime(String time) { | ||
this.time = time; | ||
} | ||
|
||
public String getNote() { | ||
return Note; | ||
} | ||
|
||
public void setNote(String note) { | ||
Note = note; | ||
} | ||
} |