3f0a457d6389c571c78983b76adf8e19ac8bc47e.svn-base 7.9 KB

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