95246e2b5a567bced7adfc164be357f38345223e.svn-base 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. package eVVM.apk.ui.bean;
  2. /**
  3. * Created by Android Studio.
  4. * User: zbb
  5. * Date: 2019/6/6
  6. * Describe: VnDetailBean
  7. */
  8. public class VnDetailBean {
  9. /**
  10. * code : 0
  11. * data : {"beginDate":"string","chatImageUrl":"string","chipNumber":"string","code":"string","datetime":"string","doctorName":"string","doctorTelephone":"string","factoryId":0,"factoryName":"string","gmpName":"string","gmpPath":"string","hospitalName":"string","sameBatchOtherColdChain":"string","sameBatchOtherFlow":"string","sameFactoryOtherVaccines":"string","type":0,"vaccinationCipher":"string","vaccineName":"string","vaccineNumber":"string"}
  12. * msg : string
  13. */
  14. private int code;
  15. private DataBean data;
  16. private String msg;
  17. public int getCode() {
  18. return code;
  19. }
  20. public void setCode(int code) {
  21. this.code = code;
  22. }
  23. public DataBean getData() {
  24. return data;
  25. }
  26. public void setData(DataBean data) {
  27. this.data = data;
  28. }
  29. public String getMsg() {
  30. return msg;
  31. }
  32. public void setMsg(String msg) {
  33. this.msg = msg;
  34. }
  35. public static class DataBean {
  36. /**
  37. * beginDate : string
  38. * chatImageUrl : string
  39. * chipNumber : string
  40. * code : string
  41. * datetime : string
  42. * doctorName : string
  43. * doctorTelephone : string
  44. * factoryId : 0
  45. * factoryName : string
  46. * gmpName : string
  47. * gmpPath : string
  48. * hospitalName : string
  49. * sameBatchOtherColdChain : string
  50. * sameBatchOtherFlow : string
  51. * sameFactoryOtherVaccines : string
  52. * type : 0
  53. * vaccinationCipher : string
  54. * vaccineName : string
  55. * vaccineNumber : string
  56. */
  57. private String beginDate;
  58. private String chatImageUrl;
  59. private String chipNumber;
  60. private String code;
  61. private String datetime;
  62. private String doctorName;
  63. private String doctorTelephone;
  64. private int factoryId;
  65. private String factoryName;
  66. private String gmpName;
  67. private String gmpPath;
  68. private String hospitalName;
  69. private String sameBatchOtherColdChain;
  70. private String sameBatchOtherFlow;
  71. private String sameFactoryOtherVaccines;
  72. private int type;
  73. private String vaccinationCipher;
  74. private String vaccineName;
  75. private String vaccineNumber;
  76. public String getBeginDate() {
  77. return beginDate;
  78. }
  79. public void setBeginDate(String beginDate) {
  80. this.beginDate = beginDate;
  81. }
  82. public String getChatImageUrl() {
  83. return chatImageUrl;
  84. }
  85. public void setChatImageUrl(String chatImageUrl) {
  86. this.chatImageUrl = chatImageUrl;
  87. }
  88. public String getChipNumber() {
  89. return chipNumber;
  90. }
  91. public void setChipNumber(String chipNumber) {
  92. this.chipNumber = chipNumber;
  93. }
  94. public String getCode() {
  95. return code;
  96. }
  97. public void setCode(String code) {
  98. this.code = code;
  99. }
  100. public String getDatetime() {
  101. return datetime;
  102. }
  103. public void setDatetime(String datetime) {
  104. this.datetime = datetime;
  105. }
  106. public String getDoctorName() {
  107. return doctorName;
  108. }
  109. public void setDoctorName(String doctorName) {
  110. this.doctorName = doctorName;
  111. }
  112. public String getDoctorTelephone() {
  113. return doctorTelephone;
  114. }
  115. public void setDoctorTelephone(String doctorTelephone) {
  116. this.doctorTelephone = doctorTelephone;
  117. }
  118. public int getFactoryId() {
  119. return factoryId;
  120. }
  121. public void setFactoryId(int factoryId) {
  122. this.factoryId = factoryId;
  123. }
  124. public String getFactoryName() {
  125. return factoryName;
  126. }
  127. public void setFactoryName(String factoryName) {
  128. this.factoryName = factoryName;
  129. }
  130. public String getGmpName() {
  131. return gmpName;
  132. }
  133. public void setGmpName(String gmpName) {
  134. this.gmpName = gmpName;
  135. }
  136. public String getGmpPath() {
  137. return gmpPath;
  138. }
  139. public void setGmpPath(String gmpPath) {
  140. this.gmpPath = gmpPath;
  141. }
  142. public String getHospitalName() {
  143. return hospitalName;
  144. }
  145. public void setHospitalName(String hospitalName) {
  146. this.hospitalName = hospitalName;
  147. }
  148. public String getSameBatchOtherColdChain() {
  149. return sameBatchOtherColdChain;
  150. }
  151. public void setSameBatchOtherColdChain(String sameBatchOtherColdChain) {
  152. this.sameBatchOtherColdChain = sameBatchOtherColdChain;
  153. }
  154. public String getSameBatchOtherFlow() {
  155. return sameBatchOtherFlow;
  156. }
  157. public void setSameBatchOtherFlow(String sameBatchOtherFlow) {
  158. this.sameBatchOtherFlow = sameBatchOtherFlow;
  159. }
  160. public String getSameFactoryOtherVaccines() {
  161. return sameFactoryOtherVaccines;
  162. }
  163. public void setSameFactoryOtherVaccines(String sameFactoryOtherVaccines) {
  164. this.sameFactoryOtherVaccines = sameFactoryOtherVaccines;
  165. }
  166. public int getType() {
  167. return type;
  168. }
  169. public void setType(int type) {
  170. this.type = type;
  171. }
  172. public String getVaccinationCipher() {
  173. return vaccinationCipher;
  174. }
  175. public void setVaccinationCipher(String vaccinationCipher) {
  176. this.vaccinationCipher = vaccinationCipher;
  177. }
  178. public String getVaccineName() {
  179. return vaccineName;
  180. }
  181. public void setVaccineName(String vaccineName) {
  182. this.vaccineName = vaccineName;
  183. }
  184. public String getVaccineNumber() {
  185. return vaccineNumber;
  186. }
  187. public void setVaccineNumber(String vaccineNumber) {
  188. this.vaccineNumber = vaccineNumber;
  189. }
  190. @Override
  191. public String toString() {
  192. return "DataBean{" +
  193. "beginDate='" + beginDate + '\'' +
  194. ", chatImageUrl='" + chatImageUrl + '\'' +
  195. ", chipNumber='" + chipNumber + '\'' +
  196. ", code='" + code + '\'' +
  197. ", datetime='" + datetime + '\'' +
  198. ", doctorName='" + doctorName + '\'' +
  199. ", doctorTelephone='" + doctorTelephone + '\'' +
  200. ", factoryId=" + factoryId +
  201. ", factoryName='" + factoryName + '\'' +
  202. ", gmpName='" + gmpName + '\'' +
  203. ", gmpPath='" + gmpPath + '\'' +
  204. ", hospitalName='" + hospitalName + '\'' +
  205. ", sameBatchOtherColdChain='" + sameBatchOtherColdChain + '\'' +
  206. ", sameBatchOtherFlow='" + sameBatchOtherFlow + '\'' +
  207. ", sameFactoryOtherVaccines='" + sameFactoryOtherVaccines + '\'' +
  208. ", type=" + type +
  209. ", vaccinationCipher='" + vaccinationCipher + '\'' +
  210. ", vaccineName='" + vaccineName + '\'' +
  211. ", vaccineNumber='" + vaccineNumber + '\'' +
  212. '}';
  213. }
  214. }
  215. }