FederatedPlatformsResponseBean.java 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010
  1. package com.hanghui.senic.bean;
  2. import com.google.gson.annotations.SerializedName;
  3. import java.util.List;
  4. /**
  5. * 获取最终结果
  6. */
  7. public class FederatedPlatformsResponseBean {
  8. @SerializedName("code")
  9. private int code;
  10. @SerializedName("msg")
  11. private String msg;
  12. @SerializedName("data")
  13. private DataDTO data;
  14. public int getCode() {
  15. return code;
  16. }
  17. public void setCode(int code) {
  18. this.code = code;
  19. }
  20. public String getMsg() {
  21. return msg;
  22. }
  23. public void setMsg(String msg) {
  24. this.msg = msg;
  25. }
  26. public DataDTO getData() {
  27. return data;
  28. }
  29. public void setData(DataDTO data) {
  30. this.data = data;
  31. }
  32. public static class DataDTO {
  33. @SerializedName("vaccineNum")
  34. private String vaccineNum;
  35. @SerializedName("travelValidation")
  36. private Object travelValidation;
  37. @SerializedName("username")
  38. private String username;
  39. @SerializedName("idNumber")
  40. private String idNumber;
  41. @SerializedName("isOpen")
  42. private Integer isOpen;// 是否开门,0表示开门,其它表示不开门
  43. @SerializedName("openMsg")
  44. private String openMsg;
  45. @SerializedName("title")
  46. private String title;
  47. @SerializedName("titleColor")
  48. private String titleColor;
  49. @SerializedName("backgroundColor")
  50. private String backgroundColor;
  51. @SerializedName("vaccineIcoTitle")
  52. private String vaccineIcoTitle;
  53. @SerializedName("vaccineIconUrl")
  54. private String vaccineIconUrl;
  55. @SerializedName("vaccineNumColor")
  56. private String vaccineNumColor;
  57. @SerializedName("travelValidationTitle")
  58. private String travelValidationTitle;
  59. @SerializedName("travelValidationIconUrl")
  60. private String travelValidationIconUrl;
  61. @SerializedName("travelValidationDesc")
  62. private Object travelValidationDesc;
  63. @SerializedName("openVoiceMsg")
  64. private String openVoiceMsg;
  65. @SerializedName("showUsername")
  66. private String showUsername;
  67. @SerializedName("showIdNumber")
  68. private String showIdNumber;
  69. @SerializedName("phone")
  70. private String phone;
  71. @SerializedName("limitGather")
  72. private Object limitGather;
  73. @SerializedName("isAlarm")
  74. private boolean isAlarm;
  75. @SerializedName("showQrcode")
  76. private boolean showQrcode;
  77. @SerializedName("qrcodeText")
  78. private String qrcodeText;
  79. @SerializedName("advertise")
  80. private String advertise;
  81. @SerializedName("useSerialPort")
  82. private String useSerialPort;
  83. @SerializedName("openTimes")
  84. private Integer openTimes;
  85. @SerializedName("signalNo")
  86. private String signalNo;
  87. @SerializedName("mainLineLeft")
  88. private Object mainLineLeft;
  89. @SerializedName("mainLineRight")
  90. private Object mainLineRight;
  91. @SerializedName("status")
  92. private String status;
  93. @SerializedName("showPageType")
  94. private String showPageType;
  95. @SerializedName("taskId")
  96. private String taskId;
  97. @SerializedName("countDown")
  98. private int countDown;
  99. @SerializedName("aMainIcon")
  100. private String aMainIcon;//图标,通用结果页是url,悬浮版结果页是数字
  101. @SerializedName("aMainLine")
  102. private String aMainLine;
  103. @SerializedName("aSubLineFirst")
  104. private String aSubLineFirst;
  105. @SerializedName("aSubLineSecond")
  106. private String aSubLineSecond;
  107. @SerializedName("aLineOneLabel")
  108. private String aLineOneLabel;
  109. @SerializedName("aLineOneValue")
  110. private String aLineOneValue;
  111. @SerializedName("aLineTwoLabel")
  112. private String aLineTwoLabel;
  113. @SerializedName("aLineTwoValue")
  114. private String aLineTwoValue;
  115. @SerializedName("aLineThrLabel")
  116. private String aLineThrLabel;
  117. @SerializedName("aLineThrValue")
  118. private String aLineThrValue;
  119. @SerializedName("bMainIcon")
  120. private String bMainIcon;
  121. @SerializedName("bMainLine")
  122. private String bMainLine;
  123. @SerializedName("bSubLine")
  124. private String bSubLine;
  125. @SerializedName("aBackgroundUrl")
  126. private String aBackgroundUrl;
  127. @SerializedName("bBackgroundUrl")
  128. private String bBackgroundUrl;
  129. @SerializedName("end")
  130. private Boolean end;
  131. @SerializedName("delay")
  132. private int delay;//end为false的情况下,延迟delay秒后发起下个请求
  133. @SerializedName("cBackgroundUrl")
  134. private String cBackgroundUrl;
  135. @SerializedName("cButtonText")
  136. private String cButtonText;
  137. @SerializedName("cButtonSubText")
  138. private String cButtonSubText;
  139. @SerializedName("dBackgroundUrl")
  140. private String dBackgroundUrl;
  141. @SerializedName("dMainLine")
  142. private String dMainLine;
  143. @SerializedName("nuclein")
  144. private List<NucleinDTO> nuclein;
  145. @SerializedName("data")
  146. private List<DataDTO1> data;
  147. @SerializedName("bChoiseList")
  148. private List<BChoiseListDTO> bChoiseList;
  149. @SerializedName("cChoiseList")
  150. private List<CChoiseListDTO> cChoiseList;
  151. @SerializedName("name")
  152. private String name;
  153. @SerializedName("CertNo")
  154. private String CertNo;
  155. @SerializedName("Mobile")
  156. private String Mobile;
  157. @SerializedName("signalType")
  158. private String signalType;
  159. @SerializedName("photo")
  160. private String photo;
  161. @SerializedName("showTimeDur")
  162. private int showTimeDur;//倒计时时间
  163. @SerializedName("icNumber")
  164. private String icNumber;
  165. @SerializedName("isSmileResult")
  166. private boolean isSmileResult;
  167. @SerializedName("cardIdEx")
  168. private String cardIdEx;
  169. public String getCardIdEx() {
  170. return cardIdEx;
  171. }
  172. public void setCardIdEx(String cardIdEx) {
  173. this.cardIdEx = cardIdEx;
  174. }
  175. public boolean isSmileResult() {
  176. return isSmileResult;
  177. }
  178. public void setSmileResult(boolean smileResult) {
  179. isSmileResult = smileResult;
  180. }
  181. public String getIcNumber() {
  182. return icNumber;
  183. }
  184. public void setIcNumber(String icNumber) {
  185. this.icNumber = icNumber;
  186. }
  187. public int getShowTimeDur() {
  188. return showTimeDur;
  189. }
  190. public void setShowTimeDur(int showTimeDur) {
  191. this.showTimeDur = showTimeDur;
  192. }
  193. public String getName() {
  194. return name;
  195. }
  196. public void setName(String name) {
  197. this.name = name;
  198. }
  199. public String getCertNo() {
  200. return CertNo;
  201. }
  202. public void setCertNo(String certNo) {
  203. CertNo = certNo;
  204. }
  205. public String getMobile() {
  206. return Mobile;
  207. }
  208. public void setMobile(String mobile) {
  209. Mobile = mobile;
  210. }
  211. public String getVaccineNum() {
  212. return vaccineNum;
  213. }
  214. public void setVaccineNum(String vaccineNum) {
  215. this.vaccineNum = vaccineNum;
  216. }
  217. public Object getTravelValidation() {
  218. return travelValidation;
  219. }
  220. public void setTravelValidation(Object travelValidation) {
  221. this.travelValidation = travelValidation;
  222. }
  223. public String getUsername() {
  224. return username;
  225. }
  226. public void setUsername(String username) {
  227. this.username = username;
  228. }
  229. public String getIdNumber() {
  230. return idNumber;
  231. }
  232. public void setIdNumber(String idNumber) {
  233. this.idNumber = idNumber;
  234. }
  235. public Integer getIsOpen() {
  236. return isOpen;
  237. }
  238. public void setIsOpen(Integer isOpen) {
  239. this.isOpen = isOpen;
  240. }
  241. public String getOpenMsg() {
  242. return openMsg;
  243. }
  244. public void setOpenMsg(String openMsg) {
  245. this.openMsg = openMsg;
  246. }
  247. public String getTitle() {
  248. return title;
  249. }
  250. public void setTitle(String title) {
  251. this.title = title;
  252. }
  253. public String getTitleColor() {
  254. return titleColor;
  255. }
  256. public void setTitleColor(String titleColor) {
  257. this.titleColor = titleColor;
  258. }
  259. public String getBackgroundColor() {
  260. return backgroundColor;
  261. }
  262. public void setBackgroundColor(String backgroundColor) {
  263. this.backgroundColor = backgroundColor;
  264. }
  265. public String getVaccineIcoTitle() {
  266. return vaccineIcoTitle;
  267. }
  268. public void setVaccineIcoTitle(String vaccineIcoTitle) {
  269. this.vaccineIcoTitle = vaccineIcoTitle;
  270. }
  271. public String getVaccineIconUrl() {
  272. return vaccineIconUrl;
  273. }
  274. public void setVaccineIconUrl(String vaccineIconUrl) {
  275. this.vaccineIconUrl = vaccineIconUrl;
  276. }
  277. public String getVaccineNumColor() {
  278. return vaccineNumColor;
  279. }
  280. public void setVaccineNumColor(String vaccineNumColor) {
  281. this.vaccineNumColor = vaccineNumColor;
  282. }
  283. public String getTravelValidationTitle() {
  284. return travelValidationTitle;
  285. }
  286. public void setTravelValidationTitle(String travelValidationTitle) {
  287. this.travelValidationTitle = travelValidationTitle;
  288. }
  289. public String getTravelValidationIconUrl() {
  290. return travelValidationIconUrl;
  291. }
  292. public void setTravelValidationIconUrl(String travelValidationIconUrl) {
  293. this.travelValidationIconUrl = travelValidationIconUrl;
  294. }
  295. public Object getTravelValidationDesc() {
  296. return travelValidationDesc;
  297. }
  298. public void setTravelValidationDesc(Object travelValidationDesc) {
  299. this.travelValidationDesc = travelValidationDesc;
  300. }
  301. public String getOpenVoiceMsg() {
  302. return openVoiceMsg;
  303. }
  304. public void setOpenVoiceMsg(String openVoiceMsg) {
  305. this.openVoiceMsg = openVoiceMsg;
  306. }
  307. public String getShowUsername() {
  308. return showUsername;
  309. }
  310. public void setShowUsername(String showUsername) {
  311. this.showUsername = showUsername;
  312. }
  313. public String getShowIdNumber() {
  314. return showIdNumber;
  315. }
  316. public void setShowIdNumber(String showIdNumber) {
  317. this.showIdNumber = showIdNumber;
  318. }
  319. public String getPhone() {
  320. return phone;
  321. }
  322. public void setPhone(String phone) {
  323. this.phone = phone;
  324. }
  325. public Object getLimitGather() {
  326. return limitGather;
  327. }
  328. public void setLimitGather(Object limitGather) {
  329. this.limitGather = limitGather;
  330. }
  331. public boolean isIsAlarm() {
  332. return isAlarm;
  333. }
  334. public void setIsAlarm(boolean isAlarm) {
  335. this.isAlarm = isAlarm;
  336. }
  337. public boolean isShowQrcode() {
  338. return showQrcode;
  339. }
  340. public void setShowQrcode(boolean showQrcode) {
  341. this.showQrcode = showQrcode;
  342. }
  343. public String getQrcodeText() {
  344. return qrcodeText;
  345. }
  346. public void setQrcodeText(String qrcodeText) {
  347. this.qrcodeText = qrcodeText;
  348. }
  349. public String getAdvertise() {
  350. return advertise;
  351. }
  352. public void setAdvertise(String advertise) {
  353. this.advertise = advertise;
  354. }
  355. public String getUseSerialPort() {
  356. return useSerialPort;
  357. }
  358. public void setUseSerialPort(String useSerialPort) {
  359. this.useSerialPort = useSerialPort;
  360. }
  361. public Integer getOpenTimes() {
  362. return openTimes;
  363. }
  364. public void setOpenTimes(Integer openTimes) {
  365. this.openTimes = openTimes;
  366. }
  367. public String getSignalNo() {
  368. return signalNo;
  369. }
  370. public void setSignalNo(String signalNo) {
  371. this.signalNo = signalNo;
  372. }
  373. public Object getMainLineLeft() {
  374. return mainLineLeft;
  375. }
  376. public void setMainLineLeft(Object mainLineLeft) {
  377. this.mainLineLeft = mainLineLeft;
  378. }
  379. public Object getMainLineRight() {
  380. return mainLineRight;
  381. }
  382. public void setMainLineRight(Object mainLineRight) {
  383. this.mainLineRight = mainLineRight;
  384. }
  385. public String getStatus() {
  386. return status;
  387. }
  388. public void setStatus(String status) {
  389. this.status = status;
  390. }
  391. public String getShowPageType() {
  392. return showPageType;
  393. }
  394. public void setShowPageType(String showPageType) {
  395. this.showPageType = showPageType;
  396. }
  397. public String getTaskId() {
  398. return taskId;
  399. }
  400. public void setTaskId(String taskId) {
  401. this.taskId = taskId;
  402. }
  403. public int getCountDown() {
  404. return countDown;
  405. }
  406. public void setCountDown(int countDown) {
  407. this.countDown = countDown;
  408. }
  409. public String getAMainIcon() {
  410. return aMainIcon;
  411. }
  412. public void setAMainIcon(String aMainIcon) {
  413. this.aMainIcon = aMainIcon;
  414. }
  415. public String getAMainLine() {
  416. return aMainLine;
  417. }
  418. public void setAMainLine(String aMainLine) {
  419. this.aMainLine = aMainLine;
  420. }
  421. public String getASubLineFirst() {
  422. return aSubLineFirst;
  423. }
  424. public void setASubLineFirst(String aSubLineFirst) {
  425. this.aSubLineFirst = aSubLineFirst;
  426. }
  427. public String getASubLineSecond() {
  428. return aSubLineSecond;
  429. }
  430. public void setASubLineSecond(String aSubLineSecond) {
  431. this.aSubLineSecond = aSubLineSecond;
  432. }
  433. public String getALineOneLabel() {
  434. return aLineOneLabel;
  435. }
  436. public void setALineOneLabel(String aLineOneLabel) {
  437. this.aLineOneLabel = aLineOneLabel;
  438. }
  439. public String getALineOneValue() {
  440. return aLineOneValue;
  441. }
  442. public void setALineOneValue(String aLineOneValue) {
  443. this.aLineOneValue = aLineOneValue;
  444. }
  445. public String getALineTwoLabel() {
  446. return aLineTwoLabel;
  447. }
  448. public void setALineTwoLabel(String aLineTwoLabel) {
  449. this.aLineTwoLabel = aLineTwoLabel;
  450. }
  451. public String getALineTwoValue() {
  452. return aLineTwoValue;
  453. }
  454. public void setALineTwoValue(String aLineTwoValue) {
  455. this.aLineTwoValue = aLineTwoValue;
  456. }
  457. public String getALineThrLabel() {
  458. return aLineThrLabel;
  459. }
  460. public void setALineThrLabel(String aLineThrLabel) {
  461. this.aLineThrLabel = aLineThrLabel;
  462. }
  463. public String getALineThrValue() {
  464. return aLineThrValue;
  465. }
  466. public void setALineThrValue(String aLineThrValue) {
  467. this.aLineThrValue = aLineThrValue;
  468. }
  469. public String getBMainIcon() {
  470. return bMainIcon;
  471. }
  472. public void setBMainIcon(String bMainIcon) {
  473. this.bMainIcon = bMainIcon;
  474. }
  475. public String getBMainLine() {
  476. return bMainLine;
  477. }
  478. public void setBMainLine(String bMainLine) {
  479. this.bMainLine = bMainLine;
  480. }
  481. public String getBSubLine() {
  482. return bSubLine;
  483. }
  484. public void setBSubLine(String bSubLine) {
  485. this.bSubLine = bSubLine;
  486. }
  487. public String getABackgroundUrl() {
  488. return aBackgroundUrl;
  489. }
  490. public void setABackgroundUrl(String aBackgroundUrl) {
  491. this.aBackgroundUrl = aBackgroundUrl;
  492. }
  493. public String getBBackgroundUrl() {
  494. return bBackgroundUrl;
  495. }
  496. public void setBBackgroundUrl(String bBackgroundUrl) {
  497. this.bBackgroundUrl = bBackgroundUrl;
  498. }
  499. public Boolean getEnd() {
  500. return end;
  501. }
  502. public void setEnd(Boolean end) {
  503. this.end = end;
  504. }
  505. public int getDelay() {
  506. return delay;
  507. }
  508. public void setDelay(int delay) {
  509. this.delay = delay;
  510. }
  511. public String getCBackgroundUrl() {
  512. return cBackgroundUrl;
  513. }
  514. public void setCBackgroundUrl(String cBackgroundUrl) {
  515. this.cBackgroundUrl = cBackgroundUrl;
  516. }
  517. public String getCButtonText() {
  518. return cButtonText;
  519. }
  520. public void setCButtonText(String cButtonText) {
  521. this.cButtonText = cButtonText;
  522. }
  523. public String getCButtonSubText() {
  524. return cButtonSubText;
  525. }
  526. public void setCButtonSubText(String cButtonSubText) {
  527. this.cButtonSubText = cButtonSubText;
  528. }
  529. public String getDBackgroundUrl() {
  530. return dBackgroundUrl;
  531. }
  532. public void setDBackgroundUrl(String dBackgroundUrl) {
  533. this.dBackgroundUrl = dBackgroundUrl;
  534. }
  535. public String getDMainLine() {
  536. return dMainLine;
  537. }
  538. public void setDMainLine(String dMainLine) {
  539. this.dMainLine = dMainLine;
  540. }
  541. public List<NucleinDTO> getNuclein() {
  542. return nuclein;
  543. }
  544. public void setNuclein(List<NucleinDTO> nuclein) {
  545. this.nuclein = nuclein;
  546. }
  547. public List<DataDTO1> getData() {
  548. return data;
  549. }
  550. public void setData(List<DataDTO1> data) {
  551. this.data = data;
  552. }
  553. public List<BChoiseListDTO> getBChoiseList() {
  554. return bChoiseList;
  555. }
  556. public void setBChoiseList(List<BChoiseListDTO> bChoiseList) {
  557. this.bChoiseList = bChoiseList;
  558. }
  559. public List<CChoiseListDTO> getCChoiseList() {
  560. return cChoiseList;
  561. }
  562. public void setCChoiseList(List<CChoiseListDTO> cChoiseList) {
  563. this.cChoiseList = cChoiseList;
  564. }
  565. public String getSignalType() {
  566. return signalType;
  567. }
  568. public void setSignalType(String signalType) {
  569. this.signalType = signalType;
  570. }
  571. public String getPhoto() {
  572. return photo;
  573. }
  574. public void setPhoto(String photo) {
  575. this.photo = photo;
  576. }
  577. public static class NucleinDTO {
  578. @SerializedName("checktime")
  579. private String checktime;
  580. @SerializedName("reportTime")
  581. private String reportTime;
  582. @SerializedName("showTime")
  583. private Object showTime;
  584. @SerializedName("result")
  585. private String result;
  586. @SerializedName("iconUrl")
  587. private String iconUrl;
  588. @SerializedName("title")
  589. private String title;
  590. @SerializedName("content")
  591. private String content;
  592. @SerializedName("contentColor")
  593. private String contentColor;
  594. public String getChecktime() {
  595. return checktime;
  596. }
  597. public void setChecktime(String checktime) {
  598. this.checktime = checktime;
  599. }
  600. public String getReportTime() {
  601. return reportTime;
  602. }
  603. public void setReportTime(String reportTime) {
  604. this.reportTime = reportTime;
  605. }
  606. public Object getShowTime() {
  607. return showTime;
  608. }
  609. public void setShowTime(Object showTime) {
  610. this.showTime = showTime;
  611. }
  612. public String getResult() {
  613. return result;
  614. }
  615. public void setResult(String result) {
  616. this.result = result;
  617. }
  618. public String getIconUrl() {
  619. return iconUrl;
  620. }
  621. public void setIconUrl(String iconUrl) {
  622. this.iconUrl = iconUrl;
  623. }
  624. public String getTitle() {
  625. return title;
  626. }
  627. public void setTitle(String title) {
  628. this.title = title;
  629. }
  630. public String getContent() {
  631. return content;
  632. }
  633. public void setContent(String content) {
  634. this.content = content;
  635. }
  636. public String getContentColor() {
  637. return contentColor;
  638. }
  639. public void setContentColor(String contentColor) {
  640. this.contentColor = contentColor;
  641. }
  642. }
  643. public static class DataDTO1 {
  644. @SerializedName("mzt")
  645. private String mzt;
  646. @SerializedName("content")
  647. private String content;
  648. @SerializedName("contentColor")
  649. private String contentColor;
  650. @SerializedName("username")
  651. private Object username;
  652. @SerializedName("idNumber")
  653. private Object idNumber;
  654. @SerializedName("phone")
  655. private Object phone;
  656. public String getMzt() {
  657. return mzt;
  658. }
  659. public void setMzt(String mzt) {
  660. this.mzt = mzt;
  661. }
  662. public String getContent() {
  663. return content;
  664. }
  665. public void setContent(String content) {
  666. this.content = content;
  667. }
  668. public String getContentColor() {
  669. return contentColor;
  670. }
  671. public void setContentColor(String contentColor) {
  672. this.contentColor = contentColor;
  673. }
  674. public Object getUsername() {
  675. return username;
  676. }
  677. public void setUsername(Object username) {
  678. this.username = username;
  679. }
  680. public Object getIdNumber() {
  681. return idNumber;
  682. }
  683. public void setIdNumber(Object idNumber) {
  684. this.idNumber = idNumber;
  685. }
  686. public Object getPhone() {
  687. return phone;
  688. }
  689. public void setPhone(Object phone) {
  690. this.phone = phone;
  691. }
  692. }
  693. public static class BChoiseListDTO {
  694. @SerializedName("label")
  695. private String label;
  696. @SerializedName("value")
  697. private String value;
  698. @SerializedName("deep")
  699. private boolean deep;
  700. public String getLabel() {
  701. return label;
  702. }
  703. public void setLabel(String label) {
  704. this.label = label;
  705. }
  706. public String getValue() {
  707. return value;
  708. }
  709. public void setValue(String value) {
  710. this.value = value;
  711. }
  712. public boolean getDeep() {
  713. return deep;
  714. }
  715. public void setDeep(boolean deep) {
  716. this.deep = deep;
  717. }
  718. }
  719. public static class CChoiseListDTO {
  720. @SerializedName("title")
  721. private String title;
  722. @SerializedName("subTitle")
  723. private String subTitle;
  724. @SerializedName("list")
  725. private List<ListDTO> list;
  726. @SerializedName("selected")
  727. private boolean selected;
  728. public boolean isSelected() {
  729. return selected;
  730. }
  731. public void setSelected(boolean selected) {
  732. this.selected = selected;
  733. }
  734. public String getTitle() {
  735. return title;
  736. }
  737. public void setTitle(String title) {
  738. this.title = title;
  739. }
  740. public String getSubTitle() {
  741. return subTitle;
  742. }
  743. public void setSubTitle(String subTitle) {
  744. this.subTitle = subTitle;
  745. }
  746. public List<ListDTO> getList() {
  747. return list;
  748. }
  749. public void setList(List<ListDTO> list) {
  750. this.list = list;
  751. }
  752. public static class ListDTO {
  753. @SerializedName("label")
  754. private String label;
  755. @SerializedName("value")
  756. private String value;
  757. @SerializedName("selected")
  758. private boolean selected;
  759. @SerializedName("topTitle")
  760. private String topTitle;
  761. @SerializedName("bottomLeftTitle")
  762. private String bottomLeftTitle;
  763. @SerializedName("bottomRightTitle")
  764. private String bottomRightTitle;
  765. public String getTopTitle() {
  766. return topTitle;
  767. }
  768. public void setTopTitle(String topTitle) {
  769. this.topTitle = topTitle;
  770. }
  771. public String getBottomLeftTitle() {
  772. return bottomLeftTitle;
  773. }
  774. public void setBottomLeftTitle(String bottomLeftTitle) {
  775. this.bottomLeftTitle = bottomLeftTitle;
  776. }
  777. public String getBottomRightTitle() {
  778. return bottomRightTitle;
  779. }
  780. public void setBottomRightTitle(String bottomRightTitle) {
  781. this.bottomRightTitle = bottomRightTitle;
  782. }
  783. public String getLabel() {
  784. return label;
  785. }
  786. public void setLabel(String label) {
  787. this.label = label;
  788. }
  789. public String getValue() {
  790. return value;
  791. }
  792. public void setValue(String value) {
  793. this.value = value;
  794. }
  795. public boolean isSelected() {
  796. return selected;
  797. }
  798. public void setSelected(boolean selected) {
  799. this.selected = selected;
  800. }
  801. }
  802. }
  803. }
  804. }