| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package com.happy.Model;
- public class SecondBufferP {
- public Integer id;
- public String dateT;
- public String dateTime;
- public String place;
- public String red_count;
- public String yellow_count;
- public String green_count;
- public String url;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getDateT() {
- return dateT;
- }
- public void setDateT(String dateT) {
- this.dateT = dateT;
- }
- public String getDateTime() {
- return dateTime;
- }
- public void setDateTime(String dateTime) {
- this.dateTime = dateTime;
- }
- public String getPlace() {
- return place;
- }
- public void setPlace(String place) {
- this.place = place;
- }
- public String getRed_count() {
- return red_count;
- }
- public void setRed_count(String red_count) {
- this.red_count = red_count;
- }
- public String getYellow_count() {
- return yellow_count;
- }
- public void setYellow_count(String yellow_count) {
- this.yellow_count = yellow_count;
- }
- public String getGreen_count() {
- return green_count;
- }
- public void setGreen_count(String green_count) {
- this.green_count = green_count;
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- }
|