1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.sinosoft.em.gps.vo;
- public class TaskStatistics {
- private String unit;//填报单位名称
- private String inputUnitId;//填报单位id
- private int tjx;//特级项
- private int tjt;//特级天数
- private int yjx;//一级项
- private int yjt;//一级天数
- private int ejx;//二级项
- private int ejt;//二级天数
- private int sjx;//三级项
- private int sjt;//三级天数
- public TaskStatistics() {
- // TODO Auto-generated constructor stub
- }
- public TaskStatistics(String unit, int tjx, int tjt, int yjx, int yjt,
- int ejx, int ejt, int sjx, int sjt) {
- super();
- this.unit = unit;
- this.tjx = tjx;
- this.tjt = tjt;
- this.yjx = yjx;
- this.yjt = yjt;
- this.ejx = ejx;
- this.ejt = ejt;
- this.sjx = sjx;
- this.sjt = sjt;
- }
-
- public String getInputUnitId() {
- return inputUnitId;
- }
- public void setInputUnitId(String inputUnitId) {
- this.inputUnitId = inputUnitId;
- }
- public String getUnit() {
- return unit;
- }
- public void setUnit(String unit) {
- this.unit = unit;
- }
- public int getTjx() {
- return tjx;
- }
- public void setTjx(int tjx) {
- this.tjx = tjx;
- }
- public int getTjt() {
- return tjt;
- }
- public void setTjt(int tjt) {
- this.tjt = tjt;
- }
- public int getYjx() {
- return yjx;
- }
- public void setYjx(int yjx) {
- this.yjx = yjx;
- }
- public int getYjt() {
- return yjt;
- }
- public void setYjt(int yjt) {
- this.yjt = yjt;
- }
- public int getEjx() {
- return ejx;
- }
- public void setEjx(int ejx) {
- this.ejx = ejx;
- }
- public int getEjt() {
- return ejt;
- }
- public void setEjt(int ejt) {
- this.ejt = ejt;
- }
- public int getSjx() {
- return sjx;
- }
- public void setSjx(int sjx) {
- this.sjx = sjx;
- }
- public int getSjt() {
- return sjt;
- }
- public void setSjt(int sjt) {
- this.sjt = sjt;
- }
- @Override
- public String toString() {
- return "TaskStatistics [unit=" + unit + ", tjx=" + tjx + ", tjt=" + tjt
- + ", yjx=" + yjx + ", yjt=" + yjt + ", ejx=" + ejx + ", ejt="
- + ejt + ", sjx=" + sjx + ", sjt=" + sjt + "]";
- }
-
- }
|