AuthenticationBean.java 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  1. package com.hanghui.senic.bean;
  2. import com.google.gson.annotations.SerializedName;
  3. import java.util.List;
  4. /**
  5. * 认证数据返回
  6. */
  7. public class AuthenticationBean {
  8. @SerializedName("code")
  9. private int code;
  10. @SerializedName("msg")
  11. private String msg;
  12. @SerializedName("data")
  13. private List<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 List<DataDTO> getData() {
  27. return data;
  28. }
  29. public void setData(List<DataDTO> data) {
  30. this.data = data;
  31. }
  32. public static class DataDTO {
  33. @SerializedName("id")
  34. private int id;
  35. @SerializedName("name")
  36. private String name;
  37. @SerializedName("machineAppId")
  38. private String machineAppId;
  39. @SerializedName("serviceAppId")
  40. private String serviceAppId;
  41. @SerializedName("serviceAddress")
  42. private String serviceAddress;
  43. @SerializedName("appAuthToken")
  44. private Object appAuthToken;
  45. @SerializedName("appAuthTokenStatus")
  46. private boolean appAuthTokenStatus;
  47. @SerializedName("thirdAuth")
  48. private boolean thirdAuth;
  49. @SerializedName("sceneId")
  50. private int sceneId;
  51. @SerializedName("sceneName")
  52. private String sceneName;
  53. @SerializedName("trade")
  54. private String trade;
  55. @SerializedName("userLibId")
  56. private int userLibId;
  57. @SerializedName("userLibName")
  58. private String userLibName;
  59. @SerializedName("groupId")
  60. private String groupId;
  61. @SerializedName("logicGroupID")
  62. private String logicGroupID;
  63. @SerializedName("mode")
  64. private String mode;
  65. @SerializedName("useAlipayFace")
  66. private boolean useAlipayFace;//是否启用支付宝人脸能力
  67. @SerializedName("linkageAds")
  68. private String linkageAds;//核验接口结果页请求地址
  69. @SerializedName("successPageTime")
  70. private Integer successPageTime;//成功结果页的展示时间
  71. @SerializedName("failPageTime")
  72. private Integer failPageTime;//失败结果页的展示时间
  73. @SerializedName("zoloConfig")
  74. private ZoloConfigDTO zoloConfig;
  75. @SerializedName("useIdcard")
  76. private boolean useIdcard;//是否启用身份证功能
  77. @SerializedName("usePersonCard")
  78. private boolean usePersonCard;//是否启用人证比对
  79. @SerializedName("useQrcode")
  80. private boolean useQrcode;//是否启用二维码功能
  81. @SerializedName("useLinkage")
  82. private boolean useLinkage;//通用模式下核验接口结果页请求是否开启,如果关闭则显示本地固定的结果页
  83. @SerializedName("faceMode")
  84. private String faceMode;//自动刷脸或点击刷脸 -auto or -click
  85. @SerializedName("clickButtonText")
  86. private String clickButtonText;
  87. @SerializedName("useSerialPort")
  88. private String useSerialPort;
  89. @SerializedName("signalNo")
  90. private String signalNo;
  91. @SerializedName("lightMode")
  92. private String lightMode;
  93. @SerializedName("volume")
  94. private Integer volume;
  95. @SerializedName("sucVoice")
  96. private String sucVoice;//开门成功的语音播放文字
  97. @SerializedName("sucText")
  98. private String sucText;//开门成功的页面提示文字
  99. @SerializedName("failVoice")
  100. private String failVoice;//刷脸失败的语音播放文字
  101. @SerializedName("failText")
  102. private String failText;//刷脸失败的页面提示文字
  103. @SerializedName("hideNavigationBar")
  104. private boolean hideNavigationBar;
  105. @SerializedName("forbidPullDown")
  106. private boolean forbidPullDown;
  107. @SerializedName("homePageUrl")
  108. private String homePageUrl;
  109. @SerializedName("transitionPageUrl")
  110. private String transitionPageUrl;
  111. @SerializedName("heartTrackingUrl")
  112. private String heartTrackingUrl;
  113. @SerializedName("transitPushUrl")
  114. private String transitPushUrl;
  115. @SerializedName("showTopBar")
  116. private boolean showTopBar;
  117. @SerializedName("leftTopBarText")
  118. private String leftTopBarText;
  119. @SerializedName("rightTopBarText")
  120. private String rightTopBarText;
  121. @SerializedName("passWay")
  122. private String passWay;//normal 通用, outStation 出站刷脸全量通行, inStation 进站刷脸全量通行
  123. @SerializedName("isOpenAgeLimit")
  124. private boolean isOpenAgeLimit;//是否开启年龄限制
  125. @SerializedName("limitSectionStart")
  126. private Integer limitSectionStart;//限制区间
  127. @SerializedName("limitSectionEnd")
  128. private Integer limitSectionEnd;
  129. @SerializedName("ageForbidText")
  130. private String ageForbidText;//禁止进入文本
  131. @SerializedName("mpassword")
  132. private String mpassword;//管理员密码
  133. @SerializedName("isPushGM")
  134. private boolean isPushGm;//是否推送门磁信号
  135. @SerializedName("GMAddress")
  136. private String GMAddress;//门磁信号推送地址
  137. @SerializedName("GMFrequency")
  138. private Integer GMFrequency;//推送门磁信号频率
  139. @SerializedName("autoLaunch")
  140. private Boolean autoLaunch;//应用是否自启动
  141. @SerializedName("entryFaceMode")
  142. private String entryFaceMode;//是否开启进场识别
  143. @SerializedName("isOpenPassport")
  144. private boolean isOpenPassport;//是否开启护照机
  145. @SerializedName("logPushUrl")
  146. private String logPushUrl;//日志推送地址
  147. @SerializedName("cameraType")
  148. private String cameraType;//摄像头类型
  149. @SerializedName("cameraBrand")
  150. private String cameraBrand;// 品牌
  151. @SerializedName("faceinAddress")
  152. private String faceinAddress;// 用戶入库接口地址(已废弃)
  153. @SerializedName("authVerifiedFacein")
  154. private boolean authVerifiedFacein;// 是否开启匿名入库 默认false
  155. @SerializedName("manualInIdCard")
  156. private boolean manualInIdCard;// 是否开启手动输入证件号 默认false
  157. @SerializedName("manualInIdCardAuth")
  158. private ManualInIdCardAuthDTO manualInIdCardAuth;// 开启手动输入证件号的密钥信息
  159. @SerializedName("idCardReaderBrand")
  160. private int idCardReaderBrand;// 身份证品牌
  161. @SerializedName("linkageCheckMode")
  162. private Integer linkageCheckMode;// 核验接口校验模式 1-通用 2-预检查模式
  163. @SerializedName("resultPageTemplate")
  164. private Integer resultPageTemplate;// 结果页模版 1-通用版 2-悬浮版
  165. @SerializedName("relayOpenModel")
  166. private Integer relayOpenModel;//继电器开门模式 1-开-闭信号 2-开-门磁-闭信息
  167. @SerializedName("openCloseInterval")
  168. private Integer openCloseInterval;//开闭时间间隔(s)
  169. @SerializedName("signalInterval")
  170. private Integer signalInterval;//信号间间隔(s)
  171. @SerializedName("gateTimeOut")
  172. private Integer gateTimeOut;//门磁超时时间(s)
  173. @SerializedName("systemTypeCode")
  174. private Integer systemTypeCode;//系统类型 1-蚂蚁OS 2-非蚂蚁OS
  175. @SerializedName("analysisPhoto")
  176. private Integer analysisPhoto;//是否解析身份证照片 0-关闭 1-开启 默认-1
  177. @SerializedName("analysisFingerprint")
  178. private Integer analysisFingerprint;//是否解析身份证指纹 0-关闭 1-开启 默认-0
  179. @SerializedName("idCardInterval")
  180. private Integer idCardInterval;//同一人刷证间隔时间 取值范围0-20 默认-3
  181. @SerializedName("communicationMode")
  182. private Integer communicationMode;//通讯模式 1-HTTP 2-WS 3-serialPort
  183. @SerializedName("wsAddress")
  184. private String wsAddress;//webSocket地址
  185. @SerializedName("communicationSerialPort")
  186. private String communicationSerialPort;//结果页串口通讯默认地址,应用通信模式是serialPort下可用
  187. @SerializedName("doorSerialPort")
  188. private String doorSerialPort;//RS232开门信号串口地址
  189. @SerializedName("linkTimeout")
  190. private Integer linkTimeout;//核验接口超时时间
  191. @SerializedName("anonymousStorage")
  192. private boolean anonymousStorage;//是否开启纯采集匿名入库 false-关闭 true-开启 默认false
  193. @SerializedName("compareSilentDisplay")
  194. private boolean compareSilentDisplay;//比对失败是否静默显示 false-关闭 true-开启 默认false
  195. @SerializedName("compareSilentDisplayTime")
  196. private Integer compareSilentDisplayTime;//比对失败静默时长 默认2
  197. @SerializedName("compareTopTitle")
  198. private String compareTopTitle;//比对失败顶部文字
  199. @SerializedName("openDelayTime")
  200. private Integer openDelayTime;//开放刷证/刷码的延时(毫秒),openDelayTime必须要<结果页的展示时间
  201. @SerializedName("encryptLinkage")
  202. private boolean encryptLinkage;//核验接口数据是否加解密(已废弃)
  203. @SerializedName("linkageAppKey")
  204. private String linkageAppKey;// 接口请求的appkey(已废弃)
  205. @SerializedName("linkageAppSecret")
  206. private String linkageAppSecret;// 接口请求的appSecret(已废弃)
  207. @SerializedName("linkagePrivateKey")
  208. private String linkagePrivateKey;// 接口请求的privateKey(已废弃)
  209. @SerializedName("serverCode")
  210. private Integer serverCode;//服务编码 默认1-BPaaSVerifyID 2-BPaaSOpenRocket
  211. @SerializedName("collectCountdownTime")
  212. private Integer collectCountdownTime;//采集页倒计时时间 5s-100s 默认值30s
  213. @SerializedName("identifyTimeout")
  214. private Integer identifyTimeout;//识别超时时间 3s-15s 默认值5s
  215. @SerializedName("voicePlaySwitch")
  216. private boolean voicePlaySwitch;//是否语音播报 默认值true
  217. @SerializedName("faceFollowBoxSwitch")
  218. private Boolean faceFollowBoxSwitch;//是否显示人脸跟随框 默认值true
  219. @SerializedName("entryDetectionMaxDistance")
  220. private Integer entryDetectionMaxDistance;//进场检测最大距离 500mm-1200mm 默认750
  221. @SerializedName("identifyDetectionMaxDistance")
  222. private Integer identifyDetectionMaxDistance;//识别态最大检测距离 500mm-1200mm 默认750
  223. @SerializedName("identifyMaxDistance")
  224. private Integer identifyMaxDistance;//识别态最大识别距离 500mm-1200mm 默认750
  225. @SerializedName("smileOfflineSwitch")
  226. private Boolean smileOfflineSwitch;//是否生成离线ftoken 默认值true
  227. @SerializedName("sunglassesIdentifyTipsSwitch")
  228. private boolean sunglassesIdentifyTipsSwitch;//是否开启墨镜识别的文案提示 默认值false
  229. @SerializedName("hatIdentifyTipsSwitch")
  230. private boolean hatIdentifyTipsSwitch;//是否开启帽子识别的文案提示 默认值false
  231. @SerializedName("bangsIdentifyTipsSwitch")
  232. private boolean bangsIdentifyTipsSwitch;//是否开启刘海识别的文案提示 默认值false
  233. @SerializedName("maskIdentifyTipsSwitch")
  234. private boolean maskIdentifyTipsSwitch;//是否开启口罩识别的文案提示 默认值false
  235. @SerializedName("qrCodeReaderBrand")
  236. private Integer qrCodeReaderBrand;//二维码读头品牌 默认 -5
  237. @SerializedName("qrCodeReaderCommunicationMode")
  238. private Integer qrCodeReaderCommunicationMode;//二维码读头通信模式 1-虚拟串口 2-串口serialPort 默认 -1
  239. @SerializedName("qrCodeReaderSerialPort")
  240. private String qrCodeReaderSerialPort;//二维码读头串口地址serialPort
  241. @SerializedName("qrCodeInterval")
  242. private Integer qrCodeInterval;//同码间隔时间 取值范围0-20 默认-7
  243. @SerializedName("checkVerifyEncryptSwitch")
  244. private Boolean checkVerifyEncryptSwitch;//核验接口数据是否加解密 默认true
  245. @SerializedName("checkVerifyEncryptAppKey")
  246. private String checkVerifyEncryptAppKey;//核验接口数据是否加解密appKey
  247. @SerializedName("checkVerifyEncryptAppSecret")
  248. private String checkVerifyEncryptAppSecret;//核验接口数据是否加解密appSecret
  249. @SerializedName("checkVerifyEncryptPrivateKey")
  250. private String checkVerifyEncryptPrivateKey;//核验接口数据是否加解密privateKey
  251. @SerializedName("checkVerifyRetryTimes")
  252. private Integer checkVerifyRetryTimes;//核验接口失败重试次数 默认-1
  253. @SerializedName("checkVerifyTimeoutTips")
  254. private String checkVerifyTimeoutTips;//核验接口超时提示语 默认-核验接口超时
  255. @SerializedName("checkVerifyFailedTips")
  256. private String checkVerifyFailedTips;//核验接口失败提示语 默认-核验接口失败
  257. @SerializedName("anonymousInterfaceUrl")
  258. private String anonymousInterfaceUrl;//匿名入库地址
  259. @SerializedName("anonymousEncryptSwitch")
  260. private Boolean anonymousEncryptSwitch;//匿名入库数据是否加解密 默认true
  261. @SerializedName("anonymousEncryptAppKey")
  262. private String anonymousEncryptAppKey;//匿名入库数据是否加解密appKey
  263. @SerializedName("anonymousEncryptAppSecret")
  264. private String anonymousEncryptAppSecret;//匿名入库数据是否加解密appSecret
  265. @SerializedName("anonymousEncryptPrivateKey")
  266. private String anonymousEncryptPrivateKey;//匿名入库数据是否加解密PrivateKey
  267. @SerializedName("anonymousRetryTimes")
  268. private Integer anonymousRetryTimes;//匿名入库接口失败重试次数 默认-2
  269. @SerializedName("anonymousTimeout")
  270. private Integer anonymousTimeout;//匿名入库接口超时时间:10s
  271. @SerializedName("anonymousStorageUrl")
  272. private String anonymousStorageUrl;//纯采集匿名入库地址
  273. @SerializedName("tenantSwitch")
  274. private Boolean tenantSwitch;//启用商户平台接口 false-关闭 true-开启 默认false
  275. @SerializedName("tenantEncryptSwitch")
  276. private Boolean tenantEncryptSwitch;//商户平台数据是否加解密 默认true
  277. @SerializedName("tenantEncryptAppKey")
  278. private String tenantEncryptAppKey;//商户平台数据是否加解密appKey
  279. @SerializedName("tenantEncryptAppSecret")
  280. private String tenantEncryptAppSecret;//商户平台数据是否加解密appSecrete
  281. @SerializedName("tenantEncryptPrivateKey")
  282. private String tenantEncryptPrivateKey;//商户平台数据是否加解密PrivateKey
  283. @SerializedName("tenantRetryTimes")
  284. private Integer tenantRetryTimes;//商户平台接口失败重试次数 默认-1
  285. @SerializedName("tenantTimeoutTips")
  286. private String tenantTimeoutTips;//商户平台接口超时提示语 默认-商户平台请求超时
  287. @SerializedName("tenantTimeout")
  288. private Integer tenantTimeout;//商户平台接口超时时间:5s
  289. @SerializedName("tenantFailedTips")
  290. private String tenantFailedTips;//商户平台接口失败提示语 默认-商户平台请求失败
  291. @SerializedName("showDisplayTimeByOpenTimesSwitch")
  292. private boolean showDisplayTimeByOpenTimesSwitch;//是否根据开门次数决定显示时长 false-关闭 true-开启 默认false
  293. @SerializedName("onceOpenDoorTime")
  294. private Integer onceOpenDoorTime;//单次开门时长 默认2
  295. @SerializedName("singlePageTime")
  296. private Integer singlePageTime;//默认单选页时长 默认120
  297. @SerializedName("multiPageTime")
  298. private Integer multiPageTime;//默认多选页时长 默认120
  299. @SerializedName("waitPageTime")
  300. private Integer waitPageTime;//默认等待页时长 默认120
  301. @SerializedName("oneToOneTipsSwitch")
  302. private Boolean oneToOneTipsSwitch;//1:1比对是否显示提醒页面 默认:true
  303. @SerializedName("oneToOneTips")
  304. private String oneToOneTips;//1:1比对提醒文字 默认:请面向屏幕刷脸
  305. @SerializedName("oneToOneVoice")
  306. private String oneToOneVoice;//1:1比对提醒语音
  307. @SerializedName("oneToOneTimeout")
  308. private Integer oneToOneTimeout;//1:1比对超时时间 默认:15s
  309. @SerializedName("doorSerialPortAddress")
  310. private String doorSerialPortAddress;//门磁串口地址
  311. @SerializedName("pushFailedRecordSwitch")
  312. private boolean pushFailedRecordSwitch;//是否推送失败记录
  313. @SerializedName("qrCodeUsePersonCard")
  314. private Boolean qrCodeUsePersonCard;//二维码是否人证比对
  315. @SerializedName("manualInUsePersonCard")
  316. private Boolean manualInUsePersonCard;//手输证件号是否人证比对
  317. @SerializedName("passportUsePersonCard")
  318. private Boolean passportUsePersonCard;//护照是否人证比对
  319. @SerializedName("ledBrightness")
  320. private Integer ledBrightness;//补光灯亮度 默认200
  321. @SerializedName("specialCodeSwitch")
  322. private Boolean specialCodeSwitch;//启⽤三要素获取特殊码接⼝ 默认:false-否
  323. @SerializedName("specialCodeUrl")
  324. private String specialCodeUrl;//三要素获取特殊码接⼝地址
  325. @SerializedName("specialCodeTimeout")
  326. private Integer specialCodeTimeout;//三要素获取特殊码接⼝超时时间:5s
  327. @SerializedName("specialCodeTimeoutTips")
  328. private String specialCodeTimeoutTips;//三要素获取特殊码接⼝超时提示语 默认-三要素获取特殊码接⼝请求超时
  329. @SerializedName("specialCodeFailedTips")
  330. private String specialCodeFailedTips;//三要素获取特殊码接⼝失败提示语 默认-三要素获取特殊码接⼝请求失败
  331. @SerializedName("specialCodePrefix")
  332. private String specialCodePrefix;// 特殊码标识(⾸位/前缀)
  333. @SerializedName("verifyRetryTimes")
  334. private Integer verifyRetryTimes;// verify核验接口失败重试次数 默认-1
  335. @SerializedName("verifyLinkTimeout")
  336. private Integer verifyLinkTimeout;// verify核验接口超时时间:4s
  337. @SerializedName("scheduledRestart")
  338. private Boolean scheduledRestart;// 是否开启定时重启 true-是 false-否 默认-false
  339. @SerializedName("scheduledRestartTime")
  340. private String scheduledRestartTime;// 定时重启时间HH:mm:ss
  341. @SerializedName("ic14443IcCardFunction")
  342. private Boolean ic14443IcCardFunction;//ic14443-是否启用IC卡ISO14443A功能 false-否(默认) true-是")
  343. @SerializedName("ic14443ReaderBrand")
  344. private Integer ic14443ReaderBrand;//ic14443-阅读器品牌 ReaderBrandEnum
  345. @SerializedName("ic14443ReaderSectorNumbers")
  346. private Integer ic14443ReaderSectorNumbers;//ic14443-读取扇区-数字;0-99 默认15
  347. @SerializedName("ic14443ReaderBlock")
  348. private String ic14443ReaderBlock;//ic14443-读取块-填写,数字逗号隔开 0,1,2,3 长度100 默认0
  349. @SerializedName("ic14443ReaderKey")
  350. private String ic14443ReaderKey;//ic14443-读取密钥-填写,默认 FFFFFFFFFFFF 长度100 默认12个F
  351. @SerializedName("ic14443StartOffset")
  352. private Integer ic14443StartOffset;//ic14443-起始偏移量-数字 0-100 默认 0
  353. @SerializedName("ic14443EndOffset")
  354. private Integer ic14443EndOffset;//ic14443-末尾偏移量-数字 0-100 默认 0
  355. @SerializedName("ic14443PersonCardComparison")
  356. private Boolean ic14443PersonCardComparison;//ic14443-是否人证比对;false-否(默认) true-是
  357. @SerializedName("ic14443SameCardIntervalTime")
  358. private Integer ic14443SameCardIntervalTime;//ic14443-同卡间隔时间;默认7
  359. @SerializedName("ic15693IcCardFunction")
  360. private Boolean ic15693IcCardFunction;//ic15693-是否启用IC卡ISO14443A功能 false-否(默认) true-是
  361. @SerializedName("ic15693ReaderBrand")
  362. private Integer ic15693ReaderBrand;//ic15693-阅读器品牌 ReaderBrandEnum
  363. @SerializedName("ic15693ReaderBlock")
  364. private String ic15693ReaderBlock;//ic15693-读取块-填写,数字逗号隔开 0,1,2,3 长度100 默认0
  365. @SerializedName("ic15693StartOffset")
  366. private Integer ic15693StartOffset;//ic15693-起始偏移量-数字 0-100 默认 0
  367. @SerializedName("ic15693EndOffset")
  368. private Integer ic15693EndOffset;//ic15693-末尾偏移量-数字 0-100 默认 0
  369. @SerializedName("ic15693PersonCardComparison")
  370. private Boolean ic15693PersonCardComparison;//ic15693-是否人证比对;false-否(默认) true-是
  371. @SerializedName("ic15693SameCardIntervalTime")
  372. private Integer ic15693SameCardIntervalTime;//ic15693-同卡间隔时间;默认7
  373. @SerializedName("expirationDate")
  374. private String expirationDate;//到期时间 yyyy-MM-dd
  375. @SerializedName("currentDate")
  376. private String currentDate;//服务端时间 yyyy-MM-dd HH:mm:ss
  377. @SerializedName("userBlacklistSwitch")
  378. private Boolean userBlacklistSwitch;//开启黑名单 默认:false-否
  379. @SerializedName("forbidPassSwitch")
  380. private Boolean forbidPassSwitch;//是否阻止通行 默认:true-是
  381. @SerializedName("forbidPassText")
  382. private String forbidPassText;//阻止通行的文本 默认:禁止通行
  383. @SerializedName("forbidPassVoice")
  384. private String forbidPassVoice;//阻止通信提示语音 默认:禁止通行,请联系管理员
  385. @SerializedName("userBlacklistHitRule")
  386. List<String> userBlacklistHitRule;//默认:勾选身份证 IDENTITY_CARD-身份证 PHONE-手机号
  387. @SerializedName("userBlacklistInterfFetchSwitch")
  388. private Boolean userBlacklistInterfFetchSwitch;//是否启用接口拉取 默认:true
  389. @SerializedName("userBlacklistInterfUrl")
  390. private String userBlacklistInterfUrl;//接口拉取地址
  391. @SerializedName("userBlacklistEncryptSwitch")
  392. private Boolean userBlacklistEncryptSwitch;//黑名单数据是否加解密 默认true
  393. @SerializedName("userBlacklistEncryptAppKey")
  394. private String userBlacklistEncryptAppKey;//核验接口数据是否加解密appKey
  395. @SerializedName("userBlacklistEncryptAppSecret")
  396. private String userBlacklistEncryptAppSecret;//核验接口数据是否加解密appSecrete
  397. @SerializedName("userBlacklistEncryptPrivateKey")
  398. private String userBlacklistEncryptPrivateKey;//核验接口数据是否加解密PrivateKey
  399. @SerializedName("userBlacklistOfflineSwitch")
  400. private Boolean userBlacklistOfflineSwitch;//是否启用本地名单
  401. @SerializedName("userBlacklistOfflineTaskId")
  402. private List<Long> userBlacklistOfflineTaskId;//本地名单任务集合[1,2]
  403. @SerializedName("pushFailedRecordType")
  404. private List<Integer> pushFailedRecordType;//推送失败记录类型 1-年龄不符,2-黑名单 3-1:N比对失败 4-1:1比对失败[1,2,3,4]
  405. @SerializedName("inOutFilterRepeatTime")
  406. private Integer inOutFilterRepeatTime;//进出记录滤重时间(0-1200s)
  407. @SerializedName("scanFaceFailedPageUrl")
  408. private String scanFaceFailedPageUrl;//刷脸失败结果页图片配置
  409. @SerializedName("licenseOnlineKey")
  410. private String licenseOnlineKey;//(百度)激活序列号
  411. @SerializedName("websocketSubscribeUrl")
  412. private String websocketSubscribeUrl;//⼈脸管理平台ws地址
  413. @SerializedName("rgbDetectDirection")
  414. private Integer rgbDetectDirection;//⼈脸识别检测⻆度(RGB)270
  415. @SerializedName("nirDetectDirection")
  416. private Integer nirDetectDirection;//⼈脸识别检测⻆度(NIR)270
  417. @SerializedName("rgbVideoDirection")
  418. private Integer rgbVideoDirection;//预览画⾯⻆度(RGB)270
  419. @SerializedName("nirVideoDirection")
  420. private Integer nirVideoDirection;//预览画⾯⻆度(NIR)270
  421. @SerializedName("mirrorVideoRGB")
  422. private Integer mirrorVideoRGB;//预览画⾯是否镜像(RGB) 0
  423. @SerializedName("mirrorVideoNIR")
  424. private Integer mirrorVideoNIR;//预览画⾯是否镜像(NIR) 0
  425. @SerializedName("mirrorDetectRGB")
  426. private Integer mirrorDetectRGB;//⼈脸识别检测是否镜像(RGB) 0
  427. @SerializedName("mirrorDetectNIR")
  428. private Integer mirrorDetectNIR;//⼈脸识别检测是否镜像(NIR) 0
  429. @SerializedName("minFaceSize")
  430. private Integer minFaceSize;//⼈脸检测最⼩⼈脸⼤⼩: 1-100; 默认 50 minimumFace
  431. @SerializedName("usingBestImage")
  432. private Boolean usingBestImage;//视频流是否开启最优⼈脸检测 true
  433. @SerializedName("qualityControl")
  434. private Boolean qualityControl;//视频流是否开启质量检测 true
  435. @SerializedName("livingControl")
  436. private Boolean livingControl;//视频流是否开启活体检测 false BaseConfig-type 活体检测是否开启 (不开启 = 0)
  437. @SerializedName("oneToNScoreThreshold")
  438. private Float oneToNScoreThreshold;//1:N⽐对阈值:0-1;默认 0.8
  439. @SerializedName("oneToOneScoreThreshold")
  440. private Float oneToOneScoreThreshold;//1:1⽐对阈值:0-1;默认 0.5
  441. @SerializedName("oneToOneContinueFailTime")
  442. private Integer oneToOneContinueFailTime;//1:1人脸连续未通过秒数(1-50)
  443. @SerializedName("oneToNFailShowTip")
  444. private Boolean oneToNFailShowTip;//1:N未通过是否显示提示语:是/否;默认 否
  445. @SerializedName("oneToNContinueFailTime")
  446. private Integer oneToNContinueFailTime;//1:N⼈脸连续未通过秒数:1-50;默认 3
  447. @SerializedName("openOneToN")
  448. private Boolean openOneToN;//是否开启1:N刷脸能⼒ 默认:true
  449. @SerializedName("nirLiveScore")
  450. private Float nirLiveScore;//NIR 近红外活体阈值:0-1;默认 0.8
  451. @SerializedName("depthLiveScore")
  452. private Float depthLiveScore;//Depth深度活体阈值(3D结构光):0-1;默认 0.8
  453. @SerializedName("illum")
  454. private float illum;//光照阈值:0-1;默认 0.8 取值范围[0~1], 数值越⼤,光线越强
  455. @SerializedName("rgbLiveScore")
  456. private Float rgbLiveScore;//RGB 可⻅光活体阈值:0-1;默认 0.8
  457. @SerializedName("bestImageScore")
  458. private Integer bestImageScore;//人脸阈值(0-100) 默认 50
  459. @SerializedName("blur")
  460. private Float blur;//模糊阈值(0-1) 默认 50
  461. @SerializedName("rgbRevert")
  462. private Boolean rgbRevert;//人脸跟随框是否镜像
  463. @SerializedName("liveType")
  464. private Integer liveType;//活体检测模式
  465. @SerializedName("previewPageUrl")
  466. private String previewPageUrl;//预览页图片配置
  467. @SerializedName("transitPushSwitch")
  468. private Boolean transitPushSwitch;//启用进出记录推送
  469. @SerializedName("transitPushEncryptSwitch")
  470. private Boolean transitPushEncryptSwitch;//进出记录推送数据是否加解密
  471. @SerializedName("transitPushEncryptAppKey")
  472. private String transitPushEncryptAppKey;//进出记录推送数据是否加解密appKey
  473. @SerializedName("transitPushEncryptAppSecret")
  474. private String transitPushEncryptAppSecret;//进出记录推送数据是否加解密appSecrete
  475. @SerializedName("transitPushEncryptPrivateKey")
  476. private String transitPushEncryptPrivateKey;//进出记录推送数据是否加解密PrivateKey
  477. @SerializedName("validTimeSwitch")
  478. private Boolean validTimeSwitch;//是否启用有效时间 默认-false
  479. @SerializedName("sameFaceInterval")
  480. private Integer sameFaceInterval;//1:N 同人脸间隔时间
  481. @SerializedName("serverTime")
  482. private long serverTime;//服务器时间
  483. @SerializedName("setPersonalList")
  484. List<Integer> setPersonalList; //设置——人员列表”【控制设置页里的人员数据的信息】 1-照片,2-证件号,3-手机号
  485. @SerializedName("successShowPersonalInfoList")
  486. List<Integer> successShowPersonalInfoList;//成功显示人员信息列表1-照片,2-姓名,3-证件号,4-手机号
  487. public List<Integer> getSuccessShowPersonalInfoList() {
  488. return successShowPersonalInfoList;
  489. }
  490. public void setSuccessShowPersonalInfoList(List<Integer> successShowPersonalInfoList) {
  491. this.successShowPersonalInfoList = successShowPersonalInfoList;
  492. }
  493. @SerializedName("isLocalBaiduFace")
  494. private Boolean isLocalBaiduFace =false;
  495. public Boolean getLocalBaiduFace() {
  496. return isLocalBaiduFace;
  497. }
  498. public void setLocalBaiduFace(Boolean localBaiduFace) {
  499. isLocalBaiduFace = localBaiduFace;
  500. }
  501. public Integer getSameFaceInterval() {
  502. return sameFaceInterval;
  503. }
  504. public void setSameFaceInterval(Integer sameFaceInterval) {
  505. this.sameFaceInterval = sameFaceInterval;
  506. }
  507. public Boolean getValidTimeSwitch() {
  508. return validTimeSwitch;
  509. }
  510. public void setValidTimeSwitch(Boolean validTimeSwitch) {
  511. this.validTimeSwitch = validTimeSwitch;
  512. }
  513. public Boolean getTransitPushSwitch() {
  514. return transitPushSwitch;
  515. }
  516. public void setTransitPushSwitch(Boolean transitPushSwitch) {
  517. this.transitPushSwitch = transitPushSwitch;
  518. }
  519. public Boolean getTransitPushEncryptSwitch() {
  520. return transitPushEncryptSwitch;
  521. }
  522. public void setTransitPushEncryptSwitch(Boolean transitPushEncryptSwitch) {
  523. this.transitPushEncryptSwitch = transitPushEncryptSwitch;
  524. }
  525. public String getTransitPushEncryptAppKey() {
  526. return transitPushEncryptAppKey;
  527. }
  528. public void setTransitPushEncryptAppKey(String transitPushEncryptAppKey) {
  529. this.transitPushEncryptAppKey = transitPushEncryptAppKey;
  530. }
  531. public String getTransitPushEncryptAppSecret() {
  532. return transitPushEncryptAppSecret;
  533. }
  534. public void setTransitPushEncryptAppSecret(String transitPushEncryptAppSecret) {
  535. this.transitPushEncryptAppSecret = transitPushEncryptAppSecret;
  536. }
  537. public String getTransitPushEncryptPrivateKey() {
  538. return transitPushEncryptPrivateKey;
  539. }
  540. public void setTransitPushEncryptPrivateKey(String transitPushEncryptPrivateKey) {
  541. this.transitPushEncryptPrivateKey = transitPushEncryptPrivateKey;
  542. }
  543. public String getPreviewPageUrl() {
  544. return previewPageUrl;
  545. }
  546. public void setPreviewPageUrl(String previewPageUrl) {
  547. this.previewPageUrl = previewPageUrl;
  548. }
  549. public Boolean getRgbRevert() {
  550. return rgbRevert;
  551. }
  552. public void setRgbRevert(Boolean rgbRevert) {
  553. this.rgbRevert = rgbRevert;
  554. }
  555. public Integer getLiveType() {
  556. return liveType;
  557. }
  558. public void setLiveType(Integer liveType) {
  559. this.liveType = liveType;
  560. }
  561. public Float getBlur() {
  562. return blur;
  563. }
  564. public void setBlur(Float blur) {
  565. this.blur = blur;
  566. }
  567. public Integer getBestImageScore() {
  568. return bestImageScore;
  569. }
  570. public void setBestImageScore(Integer bestImageScore) {
  571. this.bestImageScore = bestImageScore;
  572. }
  573. public Integer getRgbDetectDirection() {
  574. return rgbDetectDirection;
  575. }
  576. public void setRgbDetectDirection(Integer rgbDetectDirection) {
  577. this.rgbDetectDirection = rgbDetectDirection;
  578. }
  579. public Integer getNirDetectDirection() {
  580. return nirDetectDirection;
  581. }
  582. public void setNirDetectDirection(Integer nirDetectDirection) {
  583. this.nirDetectDirection = nirDetectDirection;
  584. }
  585. public Integer getRgbVideoDirection() {
  586. return rgbVideoDirection;
  587. }
  588. public void setRgbVideoDirection(Integer rgbVideoDirection) {
  589. this.rgbVideoDirection = rgbVideoDirection;
  590. }
  591. public Integer getNirVideoDirection() {
  592. return nirVideoDirection;
  593. }
  594. public void setNirVideoDirection(Integer nirVideoDirection) {
  595. this.nirVideoDirection = nirVideoDirection;
  596. }
  597. public Integer getMirrorVideoRGB() {
  598. return mirrorVideoRGB;
  599. }
  600. public void setMirrorVideoRGB(Integer mirrorVideoRGB) {
  601. this.mirrorVideoRGB = mirrorVideoRGB;
  602. }
  603. public Integer getMirrorVideoNIR() {
  604. return mirrorVideoNIR;
  605. }
  606. public void setMirrorVideoNIR(Integer mirrorVideoNIR) {
  607. this.mirrorVideoNIR = mirrorVideoNIR;
  608. }
  609. public Integer getMirrorDetectRGB() {
  610. return mirrorDetectRGB;
  611. }
  612. public void setMirrorDetectRGB(Integer mirrorDetectRGB) {
  613. this.mirrorDetectRGB = mirrorDetectRGB;
  614. }
  615. public Integer getMirrorDetectNIR() {
  616. return mirrorDetectNIR;
  617. }
  618. public void setMirrorDetectNIR(Integer mirrorDetectNIR) {
  619. this.mirrorDetectNIR = mirrorDetectNIR;
  620. }
  621. public Integer getMinFaceSize() {
  622. return minFaceSize;
  623. }
  624. public void setMinFaceSize(Integer minFaceSize) {
  625. this.minFaceSize = minFaceSize;
  626. }
  627. public Boolean getUsingBestImage() {
  628. return usingBestImage;
  629. }
  630. public void setUsingBestImage(Boolean usingBestImage) {
  631. this.usingBestImage = usingBestImage;
  632. }
  633. public Boolean getQualityControl() {
  634. return qualityControl;
  635. }
  636. public void setQualityControl(Boolean qualityControl) {
  637. this.qualityControl = qualityControl;
  638. }
  639. public Boolean getLivingControl() {
  640. return livingControl;
  641. }
  642. public void setLivingControl(Boolean livingControl) {
  643. this.livingControl = livingControl;
  644. }
  645. public Float getOneToNScoreThreshold() {
  646. return oneToNScoreThreshold;
  647. }
  648. public void setOneToNScoreThreshold(Float oneToNScoreThreshold) {
  649. this.oneToNScoreThreshold = oneToNScoreThreshold;
  650. }
  651. public Float getOneToOneScoreThreshold() {
  652. return oneToOneScoreThreshold;
  653. }
  654. public void setOneToOneScoreThreshold(Float oneToOneScoreThreshold) {
  655. this.oneToOneScoreThreshold = oneToOneScoreThreshold;
  656. }
  657. public Integer getOneToOneContinueFailTime() {
  658. return oneToOneContinueFailTime;
  659. }
  660. public void setOneToOneContinueFailTime(Integer oneToOneContinueFailTime) {
  661. this.oneToOneContinueFailTime = oneToOneContinueFailTime;
  662. }
  663. public Boolean getOneToNFailShowTip() {
  664. return oneToNFailShowTip;
  665. }
  666. public void setOneToNFailShowTip(Boolean oneToNFailShowTip) {
  667. this.oneToNFailShowTip = oneToNFailShowTip;
  668. }
  669. public Integer getOneToNContinueFailTime() {
  670. return oneToNContinueFailTime;
  671. }
  672. public void setOneToNContinueFailTime(Integer oneToNContinueFailTime) {
  673. this.oneToNContinueFailTime = oneToNContinueFailTime;
  674. }
  675. public Boolean getOpenOneToN() {
  676. return openOneToN;
  677. }
  678. public void setOpenOneToN(Boolean openOneToN) {
  679. this.openOneToN = openOneToN;
  680. }
  681. public Float getNirLiveScore() {
  682. return nirLiveScore;
  683. }
  684. public void setNirLiveScore(Float nirLiveScore) {
  685. this.nirLiveScore = nirLiveScore;
  686. }
  687. public Float getDepthLiveScore() {
  688. return depthLiveScore;
  689. }
  690. public void setDepthLiveScore(Float depthLiveScore) {
  691. this.depthLiveScore = depthLiveScore;
  692. }
  693. public Float getIllum() {
  694. return illum;
  695. }
  696. public void setIllum(Float illum) {
  697. this.illum = illum;
  698. }
  699. public Float getRgbLiveScore() {
  700. return rgbLiveScore;
  701. }
  702. public void setRgbLiveScore(Float rgbLiveScore) {
  703. this.rgbLiveScore = rgbLiveScore;
  704. }
  705. public String getWebsocketSubscribeUrl() {
  706. return websocketSubscribeUrl;
  707. }
  708. public void setWebsocketSubscribeUrl(String websocketSubscribeUrl) {
  709. this.websocketSubscribeUrl = websocketSubscribeUrl;
  710. }
  711. public String getLicenseOnlineKey() {
  712. return licenseOnlineKey;
  713. }
  714. public void setLicenseOnlineKey(String licenseOnlineKey) {
  715. this.licenseOnlineKey = licenseOnlineKey;
  716. }
  717. public String getScanFaceFailedPageUrl() {
  718. return scanFaceFailedPageUrl;
  719. }
  720. public void setScanFaceFailedPageUrl(String scanFaceFailedPageUrl) {
  721. this.scanFaceFailedPageUrl = scanFaceFailedPageUrl;
  722. }
  723. public Integer getInOutFilterRepeatTime() {
  724. return inOutFilterRepeatTime;
  725. }
  726. public void setInOutFilterRepeatTime(Integer inOutFilterRepeatTime) {
  727. this.inOutFilterRepeatTime = inOutFilterRepeatTime;
  728. }
  729. public Boolean getUserBlacklistOfflineSwitch() {
  730. return userBlacklistOfflineSwitch;
  731. }
  732. public void setUserBlacklistOfflineSwitch(Boolean userBlacklistOfflineSwitch) {
  733. this.userBlacklistOfflineSwitch = userBlacklistOfflineSwitch;
  734. }
  735. public Boolean getUserBlacklistSwitch() {
  736. return userBlacklistSwitch;
  737. }
  738. public void setUserBlacklistSwitch(Boolean userBlacklistSwitch) {
  739. this.userBlacklistSwitch = userBlacklistSwitch;
  740. }
  741. public Boolean getForbidPassSwitch() {
  742. return forbidPassSwitch;
  743. }
  744. public void setForbidPassSwitch(Boolean forbidPassSwitch) {
  745. this.forbidPassSwitch = forbidPassSwitch;
  746. }
  747. public String getForbidPassText() {
  748. return forbidPassText;
  749. }
  750. public void setForbidPassText(String forbidPassText) {
  751. this.forbidPassText = forbidPassText;
  752. }
  753. public String getForbidPassVoice() {
  754. return forbidPassVoice;
  755. }
  756. public void setForbidPassVoice(String forbidPassVoice) {
  757. this.forbidPassVoice = forbidPassVoice;
  758. }
  759. public List<String> getUserBlacklistHitRule() {
  760. return userBlacklistHitRule;
  761. }
  762. public void setUserBlacklistHitRule(List<String> userBlacklistHitRule) {
  763. this.userBlacklistHitRule = userBlacklistHitRule;
  764. }
  765. public Boolean getUserBlacklistInterfFetchSwitch() {
  766. return userBlacklistInterfFetchSwitch;
  767. }
  768. public void setUserBlacklistInterfFetchSwitch(Boolean userBlacklistInterfFetchSwitch) {
  769. this.userBlacklistInterfFetchSwitch = userBlacklistInterfFetchSwitch;
  770. }
  771. public String getUserBlacklistInterfUrl() {
  772. return userBlacklistInterfUrl;
  773. }
  774. public void setUserBlacklistInterfUrl(String userBlacklistInterfUrl) {
  775. this.userBlacklistInterfUrl = userBlacklistInterfUrl;
  776. }
  777. public Boolean getUserBlacklistEncryptSwitch() {
  778. return userBlacklistEncryptSwitch;
  779. }
  780. public void setUserBlacklistEncryptSwitch(Boolean userBlacklistEncryptSwitch) {
  781. this.userBlacklistEncryptSwitch = userBlacklistEncryptSwitch;
  782. }
  783. public String getUserBlacklistEncryptAppKey() {
  784. return userBlacklistEncryptAppKey;
  785. }
  786. public void setUserBlacklistEncryptAppKey(String userBlacklistEncryptAppKey) {
  787. this.userBlacklistEncryptAppKey = userBlacklistEncryptAppKey;
  788. }
  789. public String getUserBlacklistEncryptAppSecret() {
  790. return userBlacklistEncryptAppSecret;
  791. }
  792. public void setUserBlacklistEncryptAppSecret(String userBlacklistEncryptAppSecret) {
  793. this.userBlacklistEncryptAppSecret = userBlacklistEncryptAppSecret;
  794. }
  795. public String getUserBlacklistEncryptPrivateKey() {
  796. return userBlacklistEncryptPrivateKey;
  797. }
  798. public void setUserBlacklistEncryptPrivateKey(String userBlacklistEncryptPrivateKey) {
  799. this.userBlacklistEncryptPrivateKey = userBlacklistEncryptPrivateKey;
  800. }
  801. public List<Long> getUserBlacklistOfflineTaskId() {
  802. return userBlacklistOfflineTaskId;
  803. }
  804. public void setUserBlacklistOfflineTaskId(List<Long> userBlacklistOfflineTaskId) {
  805. this.userBlacklistOfflineTaskId = userBlacklistOfflineTaskId;
  806. }
  807. public List<Integer> getPushFailedRecordType() {
  808. return pushFailedRecordType;
  809. }
  810. public void setPushFailedRecordType(List<Integer> pushFailedRecordType) {
  811. this.pushFailedRecordType = pushFailedRecordType;
  812. }
  813. public String getCurrentDate() {
  814. return currentDate;
  815. }
  816. public void setCurrentDate(String currentDate) {
  817. this.currentDate = currentDate;
  818. }
  819. public String getExpirationDate() {
  820. return expirationDate;
  821. }
  822. public void setExpirationDate(String expirationDate) {
  823. this.expirationDate = expirationDate;
  824. }
  825. public Boolean getIc14443IcCardFunction() {
  826. return ic14443IcCardFunction;
  827. }
  828. public void setIc14443IcCardFunction(Boolean ic14443IcCardFunction) {
  829. this.ic14443IcCardFunction = ic14443IcCardFunction;
  830. }
  831. public Integer getIc14443ReaderBrand() {
  832. return ic14443ReaderBrand;
  833. }
  834. public void setIc14443ReaderBrand(Integer ic14443ReaderBrand) {
  835. this.ic14443ReaderBrand = ic14443ReaderBrand;
  836. }
  837. public Integer getIc14443ReaderSectorNumbers() {
  838. return ic14443ReaderSectorNumbers;
  839. }
  840. public void setIc14443ReaderSectorNumbers(Integer ic14443ReaderSectorNumbers) {
  841. this.ic14443ReaderSectorNumbers = ic14443ReaderSectorNumbers;
  842. }
  843. public String getIc14443ReaderBlock() {
  844. return ic14443ReaderBlock;
  845. }
  846. public void setIc14443ReaderBlock(String ic14443ReaderBlock) {
  847. this.ic14443ReaderBlock = ic14443ReaderBlock;
  848. }
  849. public String getIc14443ReaderKey() {
  850. return ic14443ReaderKey;
  851. }
  852. public void setIc14443ReaderKey(String ic14443ReaderKey) {
  853. this.ic14443ReaderKey = ic14443ReaderKey;
  854. }
  855. public Integer getIc14443StartOffset() {
  856. return ic14443StartOffset;
  857. }
  858. public void setIc14443StartOffset(Integer ic14443StartOffset) {
  859. this.ic14443StartOffset = ic14443StartOffset;
  860. }
  861. public Integer getIc14443EndOffset() {
  862. return ic14443EndOffset;
  863. }
  864. public void setIc14443EndOffset(Integer ic14443EndOffset) {
  865. this.ic14443EndOffset = ic14443EndOffset;
  866. }
  867. public Boolean getIc14443PersonCardComparison() {
  868. return ic14443PersonCardComparison;
  869. }
  870. public void setIc14443PersonCardComparison(Boolean ic14443PersonCardComparison) {
  871. this.ic14443PersonCardComparison = ic14443PersonCardComparison;
  872. }
  873. public Integer getIc14443SameCardIntervalTime() {
  874. return ic14443SameCardIntervalTime;
  875. }
  876. public void setIc14443SameCardIntervalTime(Integer ic14443SameCardIntervalTime) {
  877. this.ic14443SameCardIntervalTime = ic14443SameCardIntervalTime;
  878. }
  879. public Boolean getIc15693IcCardFunction() {
  880. return ic15693IcCardFunction;
  881. }
  882. public void setIc15693IcCardFunction(Boolean ic15693IcCardFunction) {
  883. this.ic15693IcCardFunction = ic15693IcCardFunction;
  884. }
  885. public Integer getIc15693ReaderBrand() {
  886. return ic15693ReaderBrand;
  887. }
  888. public void setIc15693ReaderBrand(Integer ic15693ReaderBrand) {
  889. this.ic15693ReaderBrand = ic15693ReaderBrand;
  890. }
  891. public String getIc15693ReaderBlock() {
  892. return ic15693ReaderBlock;
  893. }
  894. public void setIc15693ReaderBlock(String ic15693ReaderBlock) {
  895. this.ic15693ReaderBlock = ic15693ReaderBlock;
  896. }
  897. public Integer getIc15693StartOffset() {
  898. return ic15693StartOffset;
  899. }
  900. public void setIc15693StartOffset(Integer ic15693StartOffset) {
  901. this.ic15693StartOffset = ic15693StartOffset;
  902. }
  903. public Integer getIc15693EndOffset() {
  904. return ic15693EndOffset;
  905. }
  906. public void setIc15693EndOffset(Integer ic15693EndOffset) {
  907. this.ic15693EndOffset = ic15693EndOffset;
  908. }
  909. public Boolean getIc15693PersonCardComparison() {
  910. return ic15693PersonCardComparison;
  911. }
  912. public void setIc15693PersonCardComparison(Boolean ic15693PersonCardComparison) {
  913. this.ic15693PersonCardComparison = ic15693PersonCardComparison;
  914. }
  915. public Integer getIc15693SameCardIntervalTime() {
  916. return ic15693SameCardIntervalTime;
  917. }
  918. public void setIc15693SameCardIntervalTime(Integer ic15693SameCardIntervalTime) {
  919. this.ic15693SameCardIntervalTime = ic15693SameCardIntervalTime;
  920. }
  921. public Integer getVerifyRetryTimes() {
  922. return verifyRetryTimes;
  923. }
  924. public void setVerifyRetryTimes(Integer verifyRetryTimes) {
  925. this.verifyRetryTimes = verifyRetryTimes;
  926. }
  927. public Integer getVerifyLinkTimeout() {
  928. return verifyLinkTimeout;
  929. }
  930. public void setVerifyLinkTimeout(Integer verifyLinkTimeout) {
  931. this.verifyLinkTimeout = verifyLinkTimeout;
  932. }
  933. public Boolean getScheduledRestart() {
  934. return scheduledRestart;
  935. }
  936. public void setScheduledRestart(Boolean scheduledRestart) {
  937. this.scheduledRestart = scheduledRestart;
  938. }
  939. public String getScheduledRestartTime() {
  940. return scheduledRestartTime;
  941. }
  942. public void setScheduledRestartTime(String scheduledRestartTime) {
  943. this.scheduledRestartTime = scheduledRestartTime;
  944. }
  945. public Boolean getSpecialCodeSwitch() {
  946. return specialCodeSwitch;
  947. }
  948. public void setSpecialCodeSwitch(Boolean specialCodeSwitch) {
  949. this.specialCodeSwitch = specialCodeSwitch;
  950. }
  951. public String getSpecialCodeUrl() {
  952. return specialCodeUrl;
  953. }
  954. public void setSpecialCodeUrl(String specialCodeUrl) {
  955. this.specialCodeUrl = specialCodeUrl;
  956. }
  957. public Integer getSpecialCodeTimeout() {
  958. return specialCodeTimeout;
  959. }
  960. public void setSpecialCodeTimeout(Integer specialCodeTimeout) {
  961. this.specialCodeTimeout = specialCodeTimeout;
  962. }
  963. public String getSpecialCodeTimeoutTips() {
  964. return specialCodeTimeoutTips;
  965. }
  966. public void setSpecialCodeTimeoutTips(String specialCodeTimeoutTips) {
  967. this.specialCodeTimeoutTips = specialCodeTimeoutTips;
  968. }
  969. public String getSpecialCodeFailedTips() {
  970. return specialCodeFailedTips;
  971. }
  972. public void setSpecialCodeFailedTips(String specialCodeFailedTips) {
  973. this.specialCodeFailedTips = specialCodeFailedTips;
  974. }
  975. public String getSpecialCodePrefix() {
  976. return specialCodePrefix;
  977. }
  978. public void setSpecialCodePrefix(String specialCodePrefix) {
  979. this.specialCodePrefix = specialCodePrefix;
  980. }
  981. public Integer getLedBrightness() {
  982. return ledBrightness;
  983. }
  984. public void setLedBrightness(Integer ledBrightness) {
  985. this.ledBrightness = ledBrightness;
  986. }
  987. public Boolean getQrCodeUsePersonCard() {
  988. return qrCodeUsePersonCard;
  989. }
  990. public void setQrCodeUsePersonCard(Boolean qrCodeUsePersonCard) {
  991. this.qrCodeUsePersonCard = qrCodeUsePersonCard;
  992. }
  993. public Boolean getManualInUsePersonCard() {
  994. return manualInUsePersonCard;
  995. }
  996. public void setManualInUsePersonCard(Boolean manualInUsePersonCard) {
  997. this.manualInUsePersonCard = manualInUsePersonCard;
  998. }
  999. public Boolean getPassportUsePersonCard() {
  1000. return passportUsePersonCard;
  1001. }
  1002. public void setPassportUsePersonCard(Boolean passportUsePersonCard) {
  1003. this.passportUsePersonCard = passportUsePersonCard;
  1004. }
  1005. public String getTenantFailedTips() {
  1006. return tenantFailedTips;
  1007. }
  1008. public void setTenantFailedTips(String tenantFailedTips) {
  1009. this.tenantFailedTips = tenantFailedTips;
  1010. }
  1011. public Integer getServerCode() {
  1012. return serverCode;
  1013. }
  1014. public void setServerCode(Integer serverCode) {
  1015. this.serverCode = serverCode;
  1016. }
  1017. public Integer getCollectCountdownTime() {
  1018. return collectCountdownTime;
  1019. }
  1020. public void setCollectCountdownTime(Integer collectCountdownTime) {
  1021. this.collectCountdownTime = collectCountdownTime;
  1022. }
  1023. public Integer getIdentifyTimeout() {
  1024. return identifyTimeout;
  1025. }
  1026. public void setIdentifyTimeout(Integer identifyTimeout) {
  1027. this.identifyTimeout = identifyTimeout;
  1028. }
  1029. public Boolean getVoicePlaySwitch() {
  1030. return voicePlaySwitch;
  1031. }
  1032. public void setVoicePlaySwitch(Boolean voicePlaySwitch) {
  1033. this.voicePlaySwitch = voicePlaySwitch;
  1034. }
  1035. public Boolean getFaceFollowBoxSwitch() {
  1036. return faceFollowBoxSwitch;
  1037. }
  1038. public void setFaceFollowBoxSwitch(Boolean faceFollowBoxSwitch) {
  1039. this.faceFollowBoxSwitch = faceFollowBoxSwitch;
  1040. }
  1041. public Integer getEntryDetectionMaxDistance() {
  1042. return entryDetectionMaxDistance;
  1043. }
  1044. public void setEntryDetectionMaxDistance(Integer entryDetectionMaxDistance) {
  1045. this.entryDetectionMaxDistance = entryDetectionMaxDistance;
  1046. }
  1047. public Integer getIdentifyDetectionMaxDistance() {
  1048. return identifyDetectionMaxDistance;
  1049. }
  1050. public void setIdentifyDetectionMaxDistance(Integer identifyDetectionMaxDistance) {
  1051. this.identifyDetectionMaxDistance = identifyDetectionMaxDistance;
  1052. }
  1053. public Integer getIdentifyMaxDistance() {
  1054. return identifyMaxDistance;
  1055. }
  1056. public void setIdentifyMaxDistance(Integer identifyMaxDistance) {
  1057. this.identifyMaxDistance = identifyMaxDistance;
  1058. }
  1059. public Boolean getSmileOfflineSwitch() {
  1060. return smileOfflineSwitch;
  1061. }
  1062. public void setSmileOfflineSwitch(Boolean smileOfflineSwitch) {
  1063. this.smileOfflineSwitch = smileOfflineSwitch;
  1064. }
  1065. public boolean isSunglassesIdentifyTipsSwitch() {
  1066. return sunglassesIdentifyTipsSwitch;
  1067. }
  1068. public void setSunglassesIdentifyTipsSwitch(boolean sunglassesIdentifyTipsSwitch) {
  1069. this.sunglassesIdentifyTipsSwitch = sunglassesIdentifyTipsSwitch;
  1070. }
  1071. public boolean isHatIdentifyTipsSwitch() {
  1072. return hatIdentifyTipsSwitch;
  1073. }
  1074. public void setHatIdentifyTipsSwitch(boolean hatIdentifyTipsSwitch) {
  1075. this.hatIdentifyTipsSwitch = hatIdentifyTipsSwitch;
  1076. }
  1077. public boolean isBangsIdentifyTipsSwitch() {
  1078. return bangsIdentifyTipsSwitch;
  1079. }
  1080. public void setBangsIdentifyTipsSwitch(boolean bangsIdentifyTipsSwitch) {
  1081. this.bangsIdentifyTipsSwitch = bangsIdentifyTipsSwitch;
  1082. }
  1083. public boolean isMaskIdentifyTipsSwitch() {
  1084. return maskIdentifyTipsSwitch;
  1085. }
  1086. public void setMaskIdentifyTipsSwitch(boolean maskIdentifyTipsSwitch) {
  1087. this.maskIdentifyTipsSwitch = maskIdentifyTipsSwitch;
  1088. }
  1089. public Integer getQrCodeReaderBrand() {
  1090. return qrCodeReaderBrand;
  1091. }
  1092. public void setQrCodeReaderBrand(Integer qrCodeReaderBrand) {
  1093. this.qrCodeReaderBrand = qrCodeReaderBrand;
  1094. }
  1095. public Integer getQrCodeReaderCommunicationMode() {
  1096. return qrCodeReaderCommunicationMode;
  1097. }
  1098. public void setQrCodeReaderCommunicationMode(Integer qrCodeReaderCommunicationMode) {
  1099. this.qrCodeReaderCommunicationMode = qrCodeReaderCommunicationMode;
  1100. }
  1101. public String getQrCodeReaderSerialPort() {
  1102. return qrCodeReaderSerialPort;
  1103. }
  1104. public void setQrCodeReaderSerialPort(String qrCodeReaderSerialPort) {
  1105. this.qrCodeReaderSerialPort = qrCodeReaderSerialPort;
  1106. }
  1107. public Integer getQrCodeInterval() {
  1108. return qrCodeInterval;
  1109. }
  1110. public void setQrCodeInterval(Integer qrCodeInterval) {
  1111. this.qrCodeInterval = qrCodeInterval;
  1112. }
  1113. public Boolean getCheckVerifyEncryptSwitch() {
  1114. return checkVerifyEncryptSwitch;
  1115. }
  1116. public void setCheckVerifyEncryptSwitch(Boolean checkVerifyEncryptSwitch) {
  1117. this.checkVerifyEncryptSwitch = checkVerifyEncryptSwitch;
  1118. }
  1119. public String getCheckVerifyEncryptAppKey() {
  1120. return checkVerifyEncryptAppKey;
  1121. }
  1122. public void setCheckVerifyEncryptAppKey(String checkVerifyEncryptAppKey) {
  1123. this.checkVerifyEncryptAppKey = checkVerifyEncryptAppKey;
  1124. }
  1125. public String getCheckVerifyEncryptAppSecret() {
  1126. return checkVerifyEncryptAppSecret;
  1127. }
  1128. public void setCheckVerifyEncryptAppSecret(String checkVerifyEncryptAppSecret) {
  1129. this.checkVerifyEncryptAppSecret = checkVerifyEncryptAppSecret;
  1130. }
  1131. public String getCheckVerifyEncryptPrivateKey() {
  1132. return checkVerifyEncryptPrivateKey;
  1133. }
  1134. public void setCheckVerifyEncryptPrivateKey(String checkVerifyEncryptPrivateKey) {
  1135. this.checkVerifyEncryptPrivateKey = checkVerifyEncryptPrivateKey;
  1136. }
  1137. public Integer getCheckVerifyRetryTimes() {
  1138. return checkVerifyRetryTimes;
  1139. }
  1140. public void setCheckVerifyRetryTimes(Integer checkVerifyRetryTimes) {
  1141. this.checkVerifyRetryTimes = checkVerifyRetryTimes;
  1142. }
  1143. public String getCheckVerifyTimeoutTips() {
  1144. return checkVerifyTimeoutTips;
  1145. }
  1146. public void setCheckVerifyTimeoutTips(String checkVerifyTimeoutTips) {
  1147. this.checkVerifyTimeoutTips = checkVerifyTimeoutTips;
  1148. }
  1149. public String getCheckVerifyFailedTips() {
  1150. return checkVerifyFailedTips;
  1151. }
  1152. public void setCheckVerifyFailedTips(String checkVerifyFailedTips) {
  1153. this.checkVerifyFailedTips = checkVerifyFailedTips;
  1154. }
  1155. public String getAnonymousInterfaceUrl() {
  1156. return anonymousInterfaceUrl;
  1157. }
  1158. public void setAnonymousInterfaceUrl(String anonymousInterfaceUrl) {
  1159. this.anonymousInterfaceUrl = anonymousInterfaceUrl;
  1160. }
  1161. public Boolean getAnonymousEncryptSwitch() {
  1162. return anonymousEncryptSwitch;
  1163. }
  1164. public void setAnonymousEncryptSwitch(Boolean anonymousEncryptSwitch) {
  1165. this.anonymousEncryptSwitch = anonymousEncryptSwitch;
  1166. }
  1167. public String getAnonymousEncryptAppKey() {
  1168. return anonymousEncryptAppKey;
  1169. }
  1170. public void setAnonymousEncryptAppKey(String anonymousEncryptAppKey) {
  1171. this.anonymousEncryptAppKey = anonymousEncryptAppKey;
  1172. }
  1173. public String getAnonymousEncryptAppSecret() {
  1174. return anonymousEncryptAppSecret;
  1175. }
  1176. public void setAnonymousEncryptAppSecret(String anonymousEncryptAppSecret) {
  1177. this.anonymousEncryptAppSecret = anonymousEncryptAppSecret;
  1178. }
  1179. public String getAnonymousEncryptPrivateKey() {
  1180. return anonymousEncryptPrivateKey;
  1181. }
  1182. public void setAnonymousEncryptPrivateKey(String anonymousEncryptPrivateKey) {
  1183. this.anonymousEncryptPrivateKey = anonymousEncryptPrivateKey;
  1184. }
  1185. public Integer getAnonymousRetryTimes() {
  1186. return anonymousRetryTimes;
  1187. }
  1188. public void setAnonymousRetryTimes(Integer anonymousRetryTimes) {
  1189. this.anonymousRetryTimes = anonymousRetryTimes;
  1190. }
  1191. public Integer getAnonymousTimeout() {
  1192. return anonymousTimeout;
  1193. }
  1194. public void setAnonymousTimeout(Integer anonymousTimeout) {
  1195. this.anonymousTimeout = anonymousTimeout;
  1196. }
  1197. public String getAnonymousStorageUrl() {
  1198. return anonymousStorageUrl;
  1199. }
  1200. public void setAnonymousStorageUrl(String anonymousStorageUrl) {
  1201. this.anonymousStorageUrl = anonymousStorageUrl;
  1202. }
  1203. public Boolean getTenantSwitch() {
  1204. return tenantSwitch;
  1205. }
  1206. public void setTenantSwitch(Boolean tenantSwitch) {
  1207. this.tenantSwitch = tenantSwitch;
  1208. }
  1209. public Boolean getTenantEncryptSwitch() {
  1210. return tenantEncryptSwitch;
  1211. }
  1212. public void setTenantEncryptSwitch(Boolean tenantEncryptSwitch) {
  1213. this.tenantEncryptSwitch = tenantEncryptSwitch;
  1214. }
  1215. public String getTenantEncryptAppKey() {
  1216. return tenantEncryptAppKey;
  1217. }
  1218. public void setTenantEncryptAppKey(String tenantEncryptAppKey) {
  1219. this.tenantEncryptAppKey = tenantEncryptAppKey;
  1220. }
  1221. public String getTenantEncryptAppSecret() {
  1222. return tenantEncryptAppSecret;
  1223. }
  1224. public void setTenantEncryptAppSecret(String tenantEncryptAppSecret) {
  1225. this.tenantEncryptAppSecret = tenantEncryptAppSecret;
  1226. }
  1227. public String getTenantEncryptPrivateKey() {
  1228. return tenantEncryptPrivateKey;
  1229. }
  1230. public void setTenantEncryptPrivateKey(String tenantEncryptPrivateKey) {
  1231. this.tenantEncryptPrivateKey = tenantEncryptPrivateKey;
  1232. }
  1233. public Integer getTenantRetryTimes() {
  1234. return tenantRetryTimes;
  1235. }
  1236. public void setTenantRetryTimes(Integer tenantRetryTimes) {
  1237. this.tenantRetryTimes = tenantRetryTimes;
  1238. }
  1239. public String getTenantTimeoutTips() {
  1240. return tenantTimeoutTips;
  1241. }
  1242. public void setTenantTimeoutTips(String tenantTimeoutTips) {
  1243. this.tenantTimeoutTips = tenantTimeoutTips;
  1244. }
  1245. public Integer getTenantTimeout() {
  1246. return tenantTimeout;
  1247. }
  1248. public void setTenantTimeout(Integer tenantTimeout) {
  1249. this.tenantTimeout = tenantTimeout;
  1250. }
  1251. public boolean isShowDisplayTimeByOpenTimesSwitch() {
  1252. return showDisplayTimeByOpenTimesSwitch;
  1253. }
  1254. public void setShowDisplayTimeByOpenTimesSwitch(boolean showDisplayTimeByOpenTimesSwitch) {
  1255. this.showDisplayTimeByOpenTimesSwitch = showDisplayTimeByOpenTimesSwitch;
  1256. }
  1257. public Integer getOnceOpenDoorTime() {
  1258. return onceOpenDoorTime;
  1259. }
  1260. public void setOnceOpenDoorTime(Integer onceOpenDoorTime) {
  1261. this.onceOpenDoorTime = onceOpenDoorTime;
  1262. }
  1263. public Integer getSinglePageTime() {
  1264. return singlePageTime;
  1265. }
  1266. public void setSinglePageTime(Integer singlePageTime) {
  1267. this.singlePageTime = singlePageTime;
  1268. }
  1269. public Integer getMultiPageTime() {
  1270. return multiPageTime;
  1271. }
  1272. public void setMultiPageTime(Integer multiPageTime) {
  1273. this.multiPageTime = multiPageTime;
  1274. }
  1275. public Integer getWaitPageTime() {
  1276. return waitPageTime;
  1277. }
  1278. public void setWaitPageTime(Integer waitPageTime) {
  1279. this.waitPageTime = waitPageTime;
  1280. }
  1281. public Boolean getOneToOneTipsSwitch() {
  1282. return oneToOneTipsSwitch;
  1283. }
  1284. public void setOneToOneTipsSwitch(Boolean oneToOneTipsSwitch) {
  1285. this.oneToOneTipsSwitch = oneToOneTipsSwitch;
  1286. }
  1287. public String getOneToOneTips() {
  1288. return oneToOneTips;
  1289. }
  1290. public void setOneToOneTips(String oneToOneTips) {
  1291. this.oneToOneTips = oneToOneTips;
  1292. }
  1293. public String getOneToOneVoice() {
  1294. return oneToOneVoice;
  1295. }
  1296. public void setOneToOneVoice(String oneToOneVoice) {
  1297. this.oneToOneVoice = oneToOneVoice;
  1298. }
  1299. public Integer getOneToOneTimeout() {
  1300. return oneToOneTimeout;
  1301. }
  1302. public void setOneToOneTimeout(Integer oneToOneTimeOut) {
  1303. this.oneToOneTimeout = oneToOneTimeOut;
  1304. }
  1305. public String getDoorSerialPortAddress() {
  1306. return doorSerialPortAddress;
  1307. }
  1308. public void setDoorSerialPortAddress(String doorSerialPortAddress) {
  1309. this.doorSerialPortAddress = doorSerialPortAddress;
  1310. }
  1311. public boolean isPushFailedRecordSwitch() {
  1312. return pushFailedRecordSwitch;
  1313. }
  1314. public void setPushFailedRecordSwitch(boolean pushFailedRecordSwitch) {
  1315. this.pushFailedRecordSwitch = pushFailedRecordSwitch;
  1316. }
  1317. public boolean isEncryptLinkage() {
  1318. return encryptLinkage;
  1319. }
  1320. public void setEncryptLinkage(boolean encryptLinkage) {
  1321. this.encryptLinkage = encryptLinkage;
  1322. }
  1323. public String getLinkageAppKey() {
  1324. return linkageAppKey;
  1325. }
  1326. public void setLinkageAppKey(String linkageAppKey) {
  1327. this.linkageAppKey = linkageAppKey;
  1328. }
  1329. public String getLinkageAppSecret() {
  1330. return linkageAppSecret;
  1331. }
  1332. public void setLinkageAppSecret(String linkageAppSecret) {
  1333. this.linkageAppSecret = linkageAppSecret;
  1334. }
  1335. public String getLinkagePrivateKey() {
  1336. return linkagePrivateKey;
  1337. }
  1338. public void setLinkagePrivateKey(String linkagePrivateKey) {
  1339. this.linkagePrivateKey = linkagePrivateKey;
  1340. }
  1341. public Integer getOpenDelayTime() {
  1342. return openDelayTime;
  1343. }
  1344. public void setOpenDelayTime(Integer openDelayTime) {
  1345. this.openDelayTime = openDelayTime;
  1346. }
  1347. public boolean isAnonymousStorage() {
  1348. return anonymousStorage;
  1349. }
  1350. public void setAnonymousStorage(boolean anonymousStorage) {
  1351. this.anonymousStorage = anonymousStorage;
  1352. }
  1353. public boolean isCompareSilentDisplay() {
  1354. return compareSilentDisplay;
  1355. }
  1356. public void setCompareSilentDisplay(boolean compareSilentDisplay) {
  1357. this.compareSilentDisplay = compareSilentDisplay;
  1358. }
  1359. public Integer getCompareSilentDisplayTime() {
  1360. return compareSilentDisplayTime;
  1361. }
  1362. public void setCompareSilentDisplayTime(Integer compareSilentDisplayTime) {
  1363. this.compareSilentDisplayTime = compareSilentDisplayTime;
  1364. }
  1365. public String getCompareTopTitle() {
  1366. return compareTopTitle;
  1367. }
  1368. public void setCompareTopTitle(String compareTopTitle) {
  1369. this.compareTopTitle = compareTopTitle;
  1370. }
  1371. public Integer getLinkTimeout() {
  1372. return linkTimeout;
  1373. }
  1374. public void setLinkTimeout(Integer linkTimeout) {
  1375. this.linkTimeout = linkTimeout;
  1376. }
  1377. public Integer getCommunicationMode() {
  1378. return communicationMode;
  1379. }
  1380. public void setCommunicationMode(Integer communicationMode) {
  1381. this.communicationMode = communicationMode;
  1382. }
  1383. public String getWSAddress() {
  1384. return wsAddress;
  1385. }
  1386. public void setWSAddress(String wsAddress) {
  1387. this.wsAddress = wsAddress;
  1388. }
  1389. public String getCommunicationSerialPort() {
  1390. return communicationSerialPort;
  1391. }
  1392. public void setCommunicationSerialPort(String communicationSerialPort) {
  1393. this.communicationSerialPort = communicationSerialPort;
  1394. }
  1395. public String getDoorSerialPort() {
  1396. return doorSerialPort;
  1397. }
  1398. public void setDoorSerialPort(String doorSerialPort) {
  1399. this.doorSerialPort = doorSerialPort;
  1400. }
  1401. public Integer getIdCardInterval() {
  1402. return idCardInterval;
  1403. }
  1404. public void setIdCardInterval(Integer idCardInterval) {
  1405. this.idCardInterval = idCardInterval;
  1406. }
  1407. public Integer getAnalysisPhoto() {
  1408. return analysisPhoto;
  1409. }
  1410. public void setAnalysisPhoto(Integer analysisPhoto) {
  1411. this.analysisPhoto = analysisPhoto;
  1412. }
  1413. public Integer getAnalysisFingerprint() {
  1414. return analysisFingerprint;
  1415. }
  1416. public void setAnalysisFingerprint(Integer analysisFingerprint) {
  1417. this.analysisFingerprint = analysisFingerprint;
  1418. }
  1419. public Integer getSystemTypeCode() {
  1420. return systemTypeCode;
  1421. }
  1422. public void setSystemTypeCode(Integer systemTypeCode) {
  1423. this.systemTypeCode = systemTypeCode;
  1424. }
  1425. public Integer getRelayOpenModel() {
  1426. return relayOpenModel;
  1427. }
  1428. public void setRelayOpenModel(Integer relayOpenModel) {
  1429. this.relayOpenModel = relayOpenModel;
  1430. }
  1431. public Integer getOpenCloseInterval() {
  1432. return openCloseInterval;
  1433. }
  1434. public void setOpenCloseInterval(Integer openCloseInterval) {
  1435. this.openCloseInterval = openCloseInterval;
  1436. }
  1437. public Integer getSignalInterval() {
  1438. return signalInterval;
  1439. }
  1440. public void setSignalInterval(Integer signalInterval) {
  1441. this.signalInterval = signalInterval;
  1442. }
  1443. public Integer getGateTimeOut() {
  1444. return gateTimeOut;
  1445. }
  1446. public void setGateTimeOut(Integer gateTimeOut) {
  1447. this.gateTimeOut = gateTimeOut;
  1448. }
  1449. public Integer getLinkageCheckMode() {
  1450. return linkageCheckMode;
  1451. }
  1452. public void setLinkageCheckMode(Integer linkageCheckMode) {
  1453. this.linkageCheckMode = linkageCheckMode;
  1454. }
  1455. public Integer getResultPageTemplate() {
  1456. return resultPageTemplate;
  1457. }
  1458. public void setResultPageTemplate(Integer resultPageTemplate) {
  1459. this.resultPageTemplate = resultPageTemplate;
  1460. }
  1461. public int getIdCardReaderBrand() {
  1462. return idCardReaderBrand;
  1463. }
  1464. public void setIdCardReaderBrand(int idCardReaderBrand) {
  1465. this.idCardReaderBrand = idCardReaderBrand;
  1466. }
  1467. public String getFaceinAddress() {
  1468. return faceinAddress;
  1469. }
  1470. public void setFaceinAddress(String faceinAddress) {
  1471. this.faceinAddress = faceinAddress;
  1472. }
  1473. public boolean isAuthVerifiedFacein() {
  1474. return authVerifiedFacein;
  1475. }
  1476. public void setAuthVerifiedFacein(boolean authVerifiedFacein) {
  1477. this.authVerifiedFacein = authVerifiedFacein;
  1478. }
  1479. /**
  1480. * 是否开启手动输入证件号 默认false
  1481. *
  1482. * @return
  1483. */
  1484. public boolean isManualInIdCard() {
  1485. return manualInIdCard;
  1486. }
  1487. public void setManualInIdCard(boolean manualInIdCard) {
  1488. this.manualInIdCard = manualInIdCard;
  1489. }
  1490. public ManualInIdCardAuthDTO getManualInIdCardAuth() {
  1491. return manualInIdCardAuth;
  1492. }
  1493. public void setManualInIdCardAuth(ManualInIdCardAuthDTO manualInIdCardAuth) {
  1494. this.manualInIdCardAuth = manualInIdCardAuth;
  1495. }
  1496. public String getCameraType() {
  1497. return cameraType;
  1498. }
  1499. public void setCameraType(String cameraType) {
  1500. this.cameraType = cameraType;
  1501. }
  1502. public String getCameraBrand() {
  1503. return cameraBrand;
  1504. }
  1505. public void setCameraBrand(String cameraBrand) {
  1506. this.cameraBrand = cameraBrand;
  1507. }
  1508. public String getLogPushUrl() {
  1509. return logPushUrl;
  1510. }
  1511. public void setLogPushUrl(String logPushUrl) {
  1512. this.logPushUrl = logPushUrl;
  1513. }
  1514. public boolean isOpenPassport() {
  1515. return isOpenPassport;
  1516. }
  1517. public void setOpenPassport(boolean openPassport) {
  1518. isOpenPassport = openPassport;
  1519. }
  1520. public boolean isPushGm() {
  1521. return isPushGm;
  1522. }
  1523. public void setPushGm(boolean pushGm) {
  1524. isPushGm = pushGm;
  1525. }
  1526. public String getGMAddress() {
  1527. return GMAddress;
  1528. }
  1529. public void setGMAddress(String GMAddress) {
  1530. this.GMAddress = GMAddress;
  1531. }
  1532. public Integer getGMFrequency() {
  1533. return GMFrequency;
  1534. }
  1535. public void setGMFrequency(Integer GMFrequency) {
  1536. this.GMFrequency = GMFrequency;
  1537. }
  1538. public String getEntryFaceMode() {
  1539. return entryFaceMode;
  1540. }
  1541. public void setEntryFaceMode(String entryFaceMode) {
  1542. this.entryFaceMode = entryFaceMode;
  1543. }
  1544. public Boolean getAutoLaunch() {
  1545. return autoLaunch;
  1546. }
  1547. public void setAutoLaunch(Boolean autoLaunch) {
  1548. this.autoLaunch = autoLaunch;
  1549. }
  1550. public String getMpassword() {
  1551. return mpassword;
  1552. }
  1553. public void setMpassword(String mpassword) {
  1554. this.mpassword = mpassword;
  1555. }
  1556. public boolean isOpenAgeLimit() {
  1557. return isOpenAgeLimit;
  1558. }
  1559. public void setOpenAgeLimit(boolean openAgeLimit) {
  1560. isOpenAgeLimit = openAgeLimit;
  1561. }
  1562. public Integer getLimitSectionStart() {
  1563. return limitSectionStart;
  1564. }
  1565. public void setLimitSectionStart(Integer limitSectionStart) {
  1566. this.limitSectionStart = limitSectionStart;
  1567. }
  1568. public Integer getLimitSectionEnd() {
  1569. return limitSectionEnd;
  1570. }
  1571. public void setLimitSectionEnd(Integer limitSectionEnd) {
  1572. this.limitSectionEnd = limitSectionEnd;
  1573. }
  1574. public String getAgeForbidText() {
  1575. return ageForbidText;
  1576. }
  1577. public void setAgeForbidText(String ageForbidText) {
  1578. this.ageForbidText = ageForbidText;
  1579. }
  1580. public String getPassWay() {
  1581. return passWay;
  1582. }
  1583. public void setPassWay(String passWay) {
  1584. this.passWay = passWay;
  1585. }
  1586. public String getTransitPushUrl() {
  1587. return transitPushUrl;
  1588. }
  1589. public void setTransitPushUrl(String transitPushUrl) {
  1590. this.transitPushUrl = transitPushUrl;
  1591. }
  1592. public String getHeartTrackingUrl() {
  1593. return heartTrackingUrl;
  1594. }
  1595. public void setHeartTrackingUrl(String heartTrackingUrl) {
  1596. this.heartTrackingUrl = heartTrackingUrl;
  1597. }
  1598. public boolean isShowTopBar() {
  1599. return showTopBar;
  1600. }
  1601. public void setShowTopBar(boolean showTopBar) {
  1602. this.showTopBar = showTopBar;
  1603. }
  1604. public String getLeftTopBarText() {
  1605. return leftTopBarText;
  1606. }
  1607. public void setLeftTopBarText(String leftTopBarText) {
  1608. this.leftTopBarText = leftTopBarText;
  1609. }
  1610. public String getRightTopBarText() {
  1611. return rightTopBarText;
  1612. }
  1613. public void setRightTopBarText(String rightTopBarText) {
  1614. this.rightTopBarText = rightTopBarText;
  1615. }
  1616. public int getId() {
  1617. return id;
  1618. }
  1619. public void setId(int id) {
  1620. this.id = id;
  1621. }
  1622. public String getName() {
  1623. return name;
  1624. }
  1625. public void setName(String name) {
  1626. this.name = name;
  1627. }
  1628. public String getMachineAppId() {
  1629. return machineAppId;
  1630. }
  1631. public void setMachineAppId(String machineAppId) {
  1632. this.machineAppId = machineAppId;
  1633. }
  1634. public String getServiceAppId() {
  1635. return serviceAppId;
  1636. }
  1637. public void setServiceAppId(String serviceAppId) {
  1638. this.serviceAppId = serviceAppId;
  1639. }
  1640. public String getServiceAddress() {
  1641. return serviceAddress;
  1642. }
  1643. public void setServiceAddress(String serviceAddress) {
  1644. this.serviceAddress = serviceAddress;
  1645. }
  1646. public Object getAppAuthToken() {
  1647. return appAuthToken;
  1648. }
  1649. public void setAppAuthToken(Object appAuthToken) {
  1650. this.appAuthToken = appAuthToken;
  1651. }
  1652. public boolean isAppAuthTokenStatus() {
  1653. return appAuthTokenStatus;
  1654. }
  1655. public void setAppAuthTokenStatus(boolean appAuthTokenStatus) {
  1656. this.appAuthTokenStatus = appAuthTokenStatus;
  1657. }
  1658. public boolean isThirdAuth() {
  1659. return thirdAuth;
  1660. }
  1661. public void setThirdAuth(boolean thirdAuth) {
  1662. this.thirdAuth = thirdAuth;
  1663. }
  1664. public int getSceneId() {
  1665. return sceneId;
  1666. }
  1667. public void setSceneId(int sceneId) {
  1668. this.sceneId = sceneId;
  1669. }
  1670. public String getSceneName() {
  1671. return sceneName;
  1672. }
  1673. public void setSceneName(String sceneName) {
  1674. this.sceneName = sceneName;
  1675. }
  1676. public String getTrade() {
  1677. return trade;
  1678. }
  1679. public void setTrade(String trade) {
  1680. this.trade = trade;
  1681. }
  1682. public int getUserLibId() {
  1683. return userLibId;
  1684. }
  1685. public void setUserLibId(int userLibId) {
  1686. this.userLibId = userLibId;
  1687. }
  1688. public String getUserLibName() {
  1689. return userLibName;
  1690. }
  1691. public void setUserLibName(String userLibName) {
  1692. this.userLibName = userLibName;
  1693. }
  1694. public String getGroupId() {
  1695. return groupId;
  1696. }
  1697. public void setGroupId(String groupId) {
  1698. this.groupId = groupId;
  1699. }
  1700. public String getLogicGroupID() {
  1701. return logicGroupID;
  1702. }
  1703. public void setLogicGroupID(String logicGroupID) {
  1704. this.logicGroupID = logicGroupID;
  1705. }
  1706. public String getMode() {
  1707. return mode;
  1708. }
  1709. public void setMode(String mode) {
  1710. this.mode = mode;
  1711. }
  1712. public boolean isUseAlipayFace() {
  1713. return useAlipayFace;
  1714. }
  1715. public void setUseAlipayFace(boolean useAlipayFace) {
  1716. this.useAlipayFace = useAlipayFace;
  1717. }
  1718. public String getLinkageAds() {
  1719. return linkageAds;
  1720. }
  1721. public void setLinkageAds(String linkageAds) {
  1722. this.linkageAds = linkageAds;
  1723. }
  1724. public Integer getSuccessPageTime() {
  1725. return successPageTime;
  1726. }
  1727. public void setSuccessPageTime(Integer successPageTime) {
  1728. this.successPageTime = successPageTime;
  1729. }
  1730. public Integer getFailPageTime() {
  1731. return failPageTime;
  1732. }
  1733. public void setFailPageTime(Integer failPageTime) {
  1734. this.failPageTime = failPageTime;
  1735. }
  1736. public ZoloConfigDTO getZoloConfig() {
  1737. return zoloConfig;
  1738. }
  1739. public void setZoloConfig(ZoloConfigDTO zoloConfig) {
  1740. this.zoloConfig = zoloConfig;
  1741. }
  1742. public boolean isUseIdcard() {
  1743. return useIdcard;
  1744. }
  1745. public void setUseIdcard(boolean useIdcard) {
  1746. this.useIdcard = useIdcard;
  1747. }
  1748. public boolean isUsePersonCard() {
  1749. return usePersonCard;
  1750. }
  1751. public void setUsePersonCard(boolean usePersonCard) {
  1752. this.usePersonCard = usePersonCard;
  1753. }
  1754. public boolean isUseQrcode() {
  1755. return useQrcode;
  1756. }
  1757. public void setUseQrcode(boolean useQrcode) {
  1758. this.useQrcode = useQrcode;
  1759. }
  1760. public boolean isUseLinkage() {
  1761. return useLinkage;
  1762. }
  1763. public void setUseLinkage(boolean useLinkage) {
  1764. this.useLinkage = useLinkage;
  1765. }
  1766. /**
  1767. * 自动刷脸或点击刷脸 -auto or -click
  1768. *
  1769. * @return
  1770. */
  1771. public String getFaceMode() {
  1772. return faceMode;
  1773. }
  1774. public void setFaceMode(String faceMode) {
  1775. this.faceMode = faceMode;
  1776. }
  1777. public String getClickButtonText() {
  1778. return clickButtonText;
  1779. }
  1780. public void setClickButtonText(String clickButtonText) {
  1781. this.clickButtonText = clickButtonText;
  1782. }
  1783. public String getUseSerialPort() {
  1784. return useSerialPort;
  1785. }
  1786. public void setUseSerialPort(String useSerialPort) {
  1787. this.useSerialPort = useSerialPort;
  1788. }
  1789. public String getSignalNo() {
  1790. return signalNo;
  1791. }
  1792. public void setSignalNo(String signalNo) {
  1793. this.signalNo = signalNo;
  1794. }
  1795. public String getLightMode() {
  1796. return lightMode;
  1797. }
  1798. public void setLightMode(String lightMode) {
  1799. this.lightMode = lightMode;
  1800. }
  1801. public Integer getVolume() {
  1802. return volume;
  1803. }
  1804. public void setVolume(Integer volume) {
  1805. this.volume = volume;
  1806. }
  1807. public String getSucVoice() {
  1808. return sucVoice;
  1809. }
  1810. public void setSucVoice(String sucVoice) {
  1811. this.sucVoice = sucVoice;
  1812. }
  1813. public String getSucText() {
  1814. return sucText;
  1815. }
  1816. public void setSucText(String sucText) {
  1817. this.sucText = sucText;
  1818. }
  1819. public String getFailVoice() {
  1820. return failVoice;
  1821. }
  1822. public void setFailVoice(String failVoice) {
  1823. this.failVoice = failVoice;
  1824. }
  1825. public String getFailText() {
  1826. return failText;
  1827. }
  1828. public void setFailText(String failText) {
  1829. this.failText = failText;
  1830. }
  1831. public boolean isHideNavigationBar() {
  1832. return hideNavigationBar;
  1833. }
  1834. public void setHideNavigationBar(boolean hideNavigationBar) {
  1835. this.hideNavigationBar = hideNavigationBar;
  1836. }
  1837. public boolean isForbidPullDown() {
  1838. return forbidPullDown;
  1839. }
  1840. public void setForbidPullDown(boolean forbidPullDown) {
  1841. this.forbidPullDown = forbidPullDown;
  1842. }
  1843. public String getHomePageUrl() {
  1844. return homePageUrl;
  1845. }
  1846. public void setHomePageUrl(String homePageUrl) {
  1847. this.homePageUrl = homePageUrl;
  1848. }
  1849. public String getTransitionPageUrl() {
  1850. return transitionPageUrl;
  1851. }
  1852. public void setTransitionPageUrl(String transitionPageUrl) {
  1853. this.transitionPageUrl = transitionPageUrl;
  1854. }
  1855. public static class ZoloConfigDTO {
  1856. @SerializedName("supAlgorithmAngle")
  1857. private int supAlgorithmAngle;
  1858. @SerializedName("algorithmAngle")
  1859. private int algorithmAngle;
  1860. @SerializedName("displayAngle")
  1861. private int displayAngle;
  1862. @SerializedName("isMirror")
  1863. private boolean isMirror;
  1864. @SerializedName("isDisplayMirror")
  1865. private boolean isDisplayMirror;
  1866. public int getSupAlgorithmAngle() {
  1867. return supAlgorithmAngle;
  1868. }
  1869. public void setSupAlgorithmAngle(int supAlgorithmAngle) {
  1870. this.supAlgorithmAngle = supAlgorithmAngle;
  1871. }
  1872. public int getAlgorithmAngle() {
  1873. return algorithmAngle;
  1874. }
  1875. public void setAlgorithmAngle(int algorithmAngle) {
  1876. this.algorithmAngle = algorithmAngle;
  1877. }
  1878. public int getDisplayAngle() {
  1879. return displayAngle;
  1880. }
  1881. public void setDisplayAngle(int displayAngle) {
  1882. this.displayAngle = displayAngle;
  1883. }
  1884. public boolean isIsMirror() {
  1885. return isMirror;
  1886. }
  1887. public void setIsMirror(boolean isMirror) {
  1888. this.isMirror = isMirror;
  1889. }
  1890. public boolean isIsDisplayMirror() {
  1891. return isDisplayMirror;
  1892. }
  1893. public void setIsDisplayMirror(boolean isDisplayMirror) {
  1894. this.isDisplayMirror = isDisplayMirror;
  1895. }
  1896. }
  1897. public static class ManualInIdCardAuthDTO {
  1898. @SerializedName("appId")
  1899. private String appId;
  1900. @SerializedName("appKey")
  1901. private String appKey;
  1902. @SerializedName("appSecret")
  1903. private String appSecret;
  1904. @SerializedName("privateKey")
  1905. private String privateKey;
  1906. public String getAppId() {
  1907. return appId;
  1908. }
  1909. public void setAppId(String appId) {
  1910. this.appId = appId;
  1911. }
  1912. public String getAppKey() {
  1913. return appKey;
  1914. }
  1915. public void setAppKey(String appKey) {
  1916. this.appKey = appKey;
  1917. }
  1918. public String getAppSecret() {
  1919. return appSecret;
  1920. }
  1921. public void setAppSecret(String appSecret) {
  1922. this.appSecret = appSecret;
  1923. }
  1924. public String getPrivateKey() {
  1925. return privateKey;
  1926. }
  1927. public void setPrivateKey(String privateKey) {
  1928. this.privateKey = privateKey;
  1929. }
  1930. }
  1931. public long getServerTime() {
  1932. return serverTime;
  1933. }
  1934. public void setServerTime(long serverTime) {
  1935. this.serverTime = serverTime;
  1936. }
  1937. public List<Integer> getSetPersonalList() {
  1938. return setPersonalList;
  1939. }
  1940. public void setSetPersonalList(List<Integer> setPersonalList) {
  1941. this.setPersonalList = setPersonalList;
  1942. }
  1943. }
  1944. }