123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package com.sinosoft.am.duty.records.vo;
- public class TripStatistics1 {
- private String deptname;
- private String out500;
- private String no500;
- private String total500;
-
- private String out220;
- private String no220;
- private String total220;
-
- private String out110;
- private String no110;
- private String total110;
-
- private String out35;
- private String no35;
-
- private String out10;
- private String no10;
- public TripStatistics1(String deptname, String out500, String no500,
- String total500, String out220, String no220, String total220,
- String out110, String no110, String total110, String out35,
- String no35, String out10, String no10) {
- super();
- this.deptname = deptname;
- this.out500 = out500;
- this.no500 = no500;
- this.total500 = total500;
- this.out220 = out220;
- this.no220 = no220;
- this.total220 = total220;
- this.out110 = out110;
- this.no110 = no110;
- this.total110 = total110;
- this.out35 = out35;
- this.no35 = no35;
- this.out10 = out10;
- this.no10 = no10;
- }
- public TripStatistics1() {
- super();
- // TODO Auto-generated constructor stub
- }
- public String getDeptname() {
- return deptname;
- }
- public void setDeptname(String deptname) {
- this.deptname = deptname;
- }
- public String getOut500() {
- return out500;
- }
- public void setOut500(String out500) {
- this.out500 = out500;
- }
- public String getNo500() {
- return no500;
- }
- public void setNo500(String no500) {
- this.no500 = no500;
- }
- public String getTotal500() {
- return total500;
- }
- public void setTotal500(String total500) {
- this.total500 = total500;
- }
- public String getOut220() {
- return out220;
- }
- public void setOut220(String out220) {
- this.out220 = out220;
- }
- public String getNo220() {
- return no220;
- }
- public void setNo220(String no220) {
- this.no220 = no220;
- }
- public String getTotal220() {
- return total220;
- }
- public void setTotal220(String total220) {
- this.total220 = total220;
- }
- public String getOut110() {
- return out110;
- }
- public void setOut110(String out110) {
- this.out110 = out110;
- }
- public String getNo110() {
- return no110;
- }
- public void setNo110(String no110) {
- this.no110 = no110;
- }
- public String getTotal110() {
- return total110;
- }
- public void setTotal110(String total110) {
- this.total110 = total110;
- }
- public String getOut35() {
- return out35;
- }
- public void setOut35(String out35) {
- this.out35 = out35;
- }
- public String getNo35() {
- return no35;
- }
- public void setNo35(String no35) {
- this.no35 = no35;
- }
- public String getOut10() {
- return out10;
- }
- public void setOut10(String out10) {
- this.out10 = out10;
- }
- public String getNo10() {
- return no10;
- }
- public void setNo10(String no10) {
- this.no10 = no10;
- }
- @Override
- public String toString() {
- return "TripStatistics [deptname=" + deptname + ", out500=" + out500
- + ", no500=" + no500 + ", total500=" + total500 + ", out220="
- + out220 + ", no220=" + no220 + ", total220=" + total220
- + ", out110=" + out110 + ", no110=" + no110 + ", total110="
- + total110 + ", out35=" + out35 + ", no35=" + no35 + ", out10="
- + out10 + ", no10=" + no10 + "]";
- }
-
-
-
- }
|