Skip to content

Commit

Permalink
Create Shop.java
Browse files Browse the repository at this point in the history
hzuapps#5 hzuapps#21 第5次实验
  • Loading branch information
itgopan authored Nov 24, 2020
1 parent 845ec8a commit f49c959
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions students/net1814080903209/Shop.java
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;
}
}

0 comments on commit f49c959

Please sign in to comment.