4fce44a6896f3306ae6e4f9fa0f4323029f60343.svn-base 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.sinosoft.em.gps.vo;
  2. public class TaskStatistics {
  3. private String unit;//填报单位名称
  4. private String inputUnitId;//填报单位id
  5. private int tjx;//特级项
  6. private int tjt;//特级天数
  7. private int yjx;//一级项
  8. private int yjt;//一级天数
  9. private int ejx;//二级项
  10. private int ejt;//二级天数
  11. private int sjx;//三级项
  12. private int sjt;//三级天数
  13. public TaskStatistics() {
  14. // TODO Auto-generated constructor stub
  15. }
  16. public TaskStatistics(String unit, int tjx, int tjt, int yjx, int yjt,
  17. int ejx, int ejt, int sjx, int sjt) {
  18. super();
  19. this.unit = unit;
  20. this.tjx = tjx;
  21. this.tjt = tjt;
  22. this.yjx = yjx;
  23. this.yjt = yjt;
  24. this.ejx = ejx;
  25. this.ejt = ejt;
  26. this.sjx = sjx;
  27. this.sjt = sjt;
  28. }
  29. public String getInputUnitId() {
  30. return inputUnitId;
  31. }
  32. public void setInputUnitId(String inputUnitId) {
  33. this.inputUnitId = inputUnitId;
  34. }
  35. public String getUnit() {
  36. return unit;
  37. }
  38. public void setUnit(String unit) {
  39. this.unit = unit;
  40. }
  41. public int getTjx() {
  42. return tjx;
  43. }
  44. public void setTjx(int tjx) {
  45. this.tjx = tjx;
  46. }
  47. public int getTjt() {
  48. return tjt;
  49. }
  50. public void setTjt(int tjt) {
  51. this.tjt = tjt;
  52. }
  53. public int getYjx() {
  54. return yjx;
  55. }
  56. public void setYjx(int yjx) {
  57. this.yjx = yjx;
  58. }
  59. public int getYjt() {
  60. return yjt;
  61. }
  62. public void setYjt(int yjt) {
  63. this.yjt = yjt;
  64. }
  65. public int getEjx() {
  66. return ejx;
  67. }
  68. public void setEjx(int ejx) {
  69. this.ejx = ejx;
  70. }
  71. public int getEjt() {
  72. return ejt;
  73. }
  74. public void setEjt(int ejt) {
  75. this.ejt = ejt;
  76. }
  77. public int getSjx() {
  78. return sjx;
  79. }
  80. public void setSjx(int sjx) {
  81. this.sjx = sjx;
  82. }
  83. public int getSjt() {
  84. return sjt;
  85. }
  86. public void setSjt(int sjt) {
  87. this.sjt = sjt;
  88. }
  89. @Override
  90. public String toString() {
  91. return "TaskStatistics [unit=" + unit + ", tjx=" + tjx + ", tjt=" + tjt
  92. + ", yjx=" + yjx + ", yjt=" + yjt + ", ejx=" + ejx + ", ejt="
  93. + ejt + ", sjx=" + sjx + ", sjt=" + sjt + "]";
  94. }
  95. }