dict.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. <?php
  2. namespace common\components;
  3. //字典
  4. class dict
  5. {
  6. public static $data = [
  7. 'getPayType' => 1,
  8. 'appVersion' => 2,
  9. 'transType' => [
  10. //德邦
  11. 'db' => 0,
  12. //顺丰
  13. 'sh' => 1,
  14. //冷链
  15. 'll' => 2,
  16. //航空
  17. 'hk' => 3,
  18. //同城配送
  19. 'local' => 4,
  20. //到店自取
  21. 'zt' => 5,
  22. ],
  23. //昆明基地包装费计算
  24. 'kmPackCost' => [
  25. ['num' => 10, 'amount' => 15],
  26. ['num' => 25, 'amount' => 25],
  27. ['num' => 30, 'amount' => 30],
  28. ['num' => 40, 'amount' => 35],
  29. ['num' => 50, 'amount' => 40],
  30. ['num' => 60, 'amount' => 45],
  31. ['num' => 80, 'amount' => 65],
  32. ['num' => 100, 'amount' => 80],
  33. ],
  34. //测试环境
  35. // 'kmPackCost' => [
  36. // ['num' => 10, 'amount' => 0.15],
  37. // ['num' => 25, 'amount' => 0.25],
  38. // ['num' => 30, 'amount' => 0.3],
  39. // ['num' => 40, 'amount' => 0.35],
  40. // ['num' => 50, 'amount' => 0.40],
  41. // ['num' => 60, 'amount' => 0.45],
  42. // ['num' => 80, 'amount' => 0.65],
  43. // ['num' => 100, 'amount' => 0.8],
  44. // ],
  45. //重量计算标准,包括德邦、顺丰、冷链和航空。其中冷链物流,40公斤以下小件,60公斤以下中件,100公斤以下大件
  46. 'transCost' => [
  47. ['sign' => 0, 'perKiloCost' => 5],
  48. ['sign' => 1, 'perKiloCost' => 9],
  49. ['sign' => 2, 'option' => [['num' => 20, 'amount' => 50], ['num' => 30, 'amount' => 80], ['num' => 50, 'amount' => 120], ['num' => 70, 'amount' => 180], ['num' => 100, 'amount' => 200]]],
  50. ['sign' => 3, 'perKiloCost' => 4],
  51. ['sign' => 4, 'perKiloCost' => 0],
  52. ['sign' => 5, 'perKiloCost' => 0],
  53. ],
  54. //测试环境,德邦、顺丰、冷链和航空
  55. // 'transCost' => [
  56. // ['sign' => 0, 'perKiloCost' => 0.05],
  57. // ['sign' => 1, 'perKiloCost' => 0.09],
  58. // ['sign' => 2, 'option' => [['num' => 40, 'amount' => 0.05], ['num' => 60, 'amount' => 0.1], ['num' => 100, 'amount' => 0.2]]],
  59. // ['sign' => 3, 'perKiloCost' => 0.04],
  60. // ],
  61. //默认开启订阅消息
  62. 'subscribeMessage' => 1,
  63. 'hdMiniMessage' => [
  64. //优惠券到账通知
  65. 'giveCoupon' => ['msgId' => '_MqYqXLgNPWvHg-tUuh3vJMTb2aAOvvIFf0Vm2pwjiI'],
  66. //购买成功通知
  67. 'cgSuccess' => ['msgId' => 'UAIsxaFbkyi34CRYqncQ6pNsjNgn6Gcqte_AoHmPbxA'],
  68. //账单生成提醒
  69. 'remindHdClear' => ['msgId' => 'Xyjo2M0uMbrTLg76wuMf0b7i_tqjcqosKj-hACDHPds'],
  70. //发货通知
  71. 'fhNotice' => ['msgId' => 'WyktXtxES58RwUbkXhD1N9lNNmxM3tNKiOuDf_YG_DQ'],
  72. //售后通知
  73. 'afterSale' => ['msgId' => 'QbQLZy-Mxv1wrqKHhaH8lM6BuXDZv4IoOZPHpJQmMTY'],
  74. ],
  75. 'hdMiniMessageDev' => [
  76. //优惠券到账通知
  77. 'giveCoupon' => ['msgId' => 'r7BIUWRqpVmqqOqdtq5BhjffkLyOaZxi0fvme_l-V8A'],
  78. //购买成功通知
  79. 'cgSuccess' => ['msgId' => 'ZfCmPfD96W_H0-pWDyQHCJQC5ht41NXtTS8nP28xKQQ'],
  80. //账单生成提醒
  81. 'remindHdClear' => ['msgId' => '1mj55S920TbW_iF_jpHQrdVShs7LQgPBzy_GeU3kbhk'],
  82. //发货通知
  83. 'fhNotice' => ['msgId' => 'aqrvfRVus0PbxaSeqhuPd6W4T7awoQX9nIT2y2jLPB0'],
  84. //售后通知
  85. 'afterSale' => ['msgId' => 'eLRc2blfKBMsuGHkFnQ_rWDBZwMmJErr7L-BDwAHBLc'],
  86. ],
  87. 'mtConfig' => [
  88. 'app_id' => '119094',
  89. 'app_secret' => 'b7e86d768391180f805621b40ec31e33',
  90. 'request_url' => '', // 默认 `https://waimaiopen.meituan.com/api/v1/`
  91. ],
  92. //小程序原始ID
  93. 'miniOriginalId' => [
  94. 'dev' => ['mall' => 'gh_071ff9f39df6', 'hd' => 'gh_177befc881cb', 'ghs' => 'gh_2a429284375a', 'jd' => '',],
  95. 'product' => ['mall' => 'gh_38f1a1af64ca', 'hd' => 'gh_73b8b357d19a', 'ghs' => 'gh_2e886744af66', 'jd' => '',],
  96. 'current' => ['mall' => '', 'hd' => '', 'ghs' => '', 'jd' => '',],
  97. ],
  98. //是否需要打印
  99. 'needPrint' => [
  100. 'need' => 1,
  101. 'noNeed' => 2,
  102. ],
  103. //结账方式
  104. 'hasPay' => [
  105. //待付款,扫码付
  106. 'unPay' => 0,
  107. //线下
  108. 'payed' => 1,
  109. //欠款
  110. 'debt' => 2,
  111. //现金
  112. 'cash' => 3,
  113. ],
  114. 'hasPayMap' => [
  115. ],
  116. //产品属性
  117. 'property' => [
  118. //商品
  119. 'goods' => 0,
  120. //花材
  121. 'item' => 1,
  122. ],
  123. //单位类型 0大单位 1小单位
  124. 'unitType' => [
  125. 'big' => 0,
  126. 'small' => 1,
  127. ],
  128. //配送方式,0免费送货 1到店自取 2跑腿 3发物流 4快递
  129. 'sendType' => [
  130. 'carGet' => 0,
  131. 'shopGet' => 1,
  132. 'thirdSend' => 2,
  133. 'wl' => 3,
  134. 'express' => 4,
  135. ],
  136. //批发店囤货时显示给零售库存的最高值
  137. 'showMaxStock' => 260,
  138. //余额满miniCashAmount才能提现
  139. 'miniCashAmount' => 1,
  140. //本条流水的余额是否可以提现
  141. 'yeTx' => [
  142. //不可以
  143. 'canNot' => 1,
  144. //可以
  145. 'can' => 2,
  146. ],
  147. //平台资产
  148. 'ptAsset' => [
  149. 'hdBalance' => ['id' => 1, 'name' => '零售余额'],
  150. 'ghsBalance' => ['id' => 2, 'name' => '供货商余额'],
  151. 'hdTxBalance' => ['id' => 3, 'name' => '零售可提现'],
  152. 'ghsTxBalance' => ['id' => 4, 'name' => '供货商可提现'],
  153. ],
  154. //是否在线支付
  155. 'onlinePay' => ['not' => 1, 'yes' => 2],
  156. //商家开单了,客户多少秒后未付款,自动标记欠款。由于未付款单自动标记为欠款,商家开的订单360天内都不过期。此功能弃用
  157. 'local_gys_kd_auto_set_debt_time' => 600,
  158. //客户采购订单有效期是多少秒,有效期内可以支付,到期自动取消。
  159. 'order_pay_has_time' => 600,
  160. //客户采购线上付款的,在订单到期前多少秒还能支付
  161. 'order_online_pay_has_ahead_time' => 100,
  162. 'expressList' => [
  163. [
  164. "id" => 1,
  165. "deliveryId" => "dada",
  166. "deliveryName" => "达达"
  167. ]
  168. ],
  169. //默认的日期搜索选项
  170. 'dateDefaultOption' => [
  171. ['name' => '昨天', 'value' => 'yesterday'],
  172. ['name' => '今天', 'value' => 'today',],
  173. ['name' => '本月', 'value' => 'thisMonth',],
  174. ['name' => '上月', 'value' => 'lastMonth',],
  175. ['name' => '今年', 'value' => 'thisYear',],
  176. ],
  177. //所属平台类型
  178. 'ptStyle' => [
  179. 'hd' => 1,//零售花店端
  180. 'ghs' => 2,//二级批发端
  181. 'mall' => 3,//商城端
  182. 'kmGhs' => 4,//基地端
  183. ],
  184. //订单发起方,与ptStyle一致
  185. 'cgStyle' => [
  186. 'hd' => 1,//零售花店端
  187. 'ghs' => 2,//二级批发端
  188. 'mall' => 3,//商城端
  189. 'kmGhs' => 4,//基地端
  190. ],
  191. //结帐方式
  192. 'clearStyle' => [
  193. 'hd2Gys' => 1,//零售主动供货商结帐
  194. 'gys2Hd' => 2,//供货商要求花店结帐
  195. 'gys2KmGys' => 3,//供货商向昆明供货商结帐
  196. 'kmGys2gys' => 4,//昆明供货商向供货商结账
  197. ],
  198. 'merchantStatus' => ['checking' => 0, 'pass' => 1, 'noPass' => 2, 'freeze' => 3, 'unfreeze' => 4, 'shut' => 5],
  199. //涨价方式
  200. 'riseType' => ['noRise' => 0, 'percent' => 1, 'amount' => 2,],
  201. 'riseTypeName' => [0 => '不涨价', 1 => '按百分比', 2 => '按金额'],
  202. //支付方式
  203. 'payWay' => ['wxPay' => 0, 'alipay' => 1, 'balancePay' => 2, 'debtPay' => 3, 'cash' => 4, 'bankCard' => 5, 'unknown' => 9, 'unPay' => 10,],
  204. 'payWayName' => [0 => '微信', 1 => '支付宝', 2 => '余额', 3 => '欠款', 4 => '现金', 5 => '银行卡', 9 => '其它', 10 => '待付款'],
  205. 'payWayFullName' => [0 => '微信支付', 1 => '支付宝', 2 => '余额支付', 3 => '欠款支付', 4 => '现金', 5 => '银行卡', 9 => '其它', 10 => '待付款'],
  206. //后台支付方式选项
  207. 'htPayWayOption' => [
  208. ['name' => '微信', 'id' => 0],
  209. ['name' => '支付宝', 'id' => 1],
  210. ['name' => '现金', 'id' => 4],
  211. ['name' => '银行卡', 'id' => 5],
  212. ],
  213. //优惠类型
  214. 'discountType' => [
  215. //没有优惠
  216. 'noDiscount' => 1,
  217. //使用平台优惠券
  218. 'usePtCoupon' => 2,
  219. //商家打折
  220. 'discount' => 3,
  221. //红包
  222. 'hb' => 4,
  223. ],
  224. 'payStatus' => ['cancel' => -1, 'waitForPay' => 0, 'waitForSend' => 1],
  225. 'sendStatusName' => [0 => '待发货', 1 => '送货中', 2 => '已送达'],
  226. 'sendStatus' => ['waitForSend' => 0, 'sending' => 1, 'reached' => 2],
  227. 'replyType' => ['redirectUrl' => 0, 'text' => 1, 'news' => 2, 'multiNews' => 3],
  228. 'goodsStatusName' => [0 => '正常', 1 => '下架', 2 => '删除'],
  229. 'goodsStatus' => ['online' => 0, 'soldOut' => 1, 'del' => 2],
  230. 'goodsDelStatusName' => [0 => '正常,未删除', 1 => '删除'],
  231. 'goodsDelStatus' => ['normal' => 0, 'del' => 1],
  232. 'reachPeriodName' => [0 => '上午', 1 => '下午', 2 => '晚上'],
  233. 'reachPeriod' => ['am' => 0, 'pm' => 1, 'night' => 2],
  234. //运费
  235. 'freight' => [
  236. 'firstDistance' => 5000,//5公里内
  237. 'firstPrice' => 0,//16元运费
  238. 'nextDistance' => 1000,//每增加1公里
  239. 'nextPrice' => 2,//增加2元
  240. ],
  241. "io" => ['payout' => 0, 'income' => 1, 'other' => 2],
  242. "ioName" => [0 => '支出', 1 => '收入', 2 => '其它'],
  243. //流水类型,充值支付回调时的订单类型
  244. "capitalType" => [
  245. 'xhOrder' => ['id' => 0, 'name' => 'xhOrder'],
  246. 'xhActiveOrder' => ['id' => 2, 'name' => 'xhActiveOrder'],
  247. //充值
  248. 'xhRecharge' => ['id' => 4, 'name' => 'xhRecharge'],
  249. //支付宝关联微信
  250. 'xhUserUnite' => ['id' => 5, 'name' => 'xhUserUnite'],
  251. 'xhDrawCash' => ['id' => 6, 'name' => 'xhDrawCash'],
  252. 'xhApplyOrder' => ['id' => 7, 'name' => 'xhApplyOrder'],
  253. 'xhMergeUser' => ['id' => 8, 'name' => 'xhMergeUser'],
  254. 'xhRenew' => ['id' => 9, 'name' => 'xhRenew'],
  255. //供货商订单
  256. 'xhGhsOrder' => ['id' => 10, 'name' => 'xhGhsOrder'],
  257. //零售采购
  258. 'xhPurchase' => ['id' => 11, 'name' => 'xhPurchase'],
  259. //培训报名
  260. 'pxApply' => ['id' => 12, 'name' => 'pxApply'],
  261. //花店采购结算
  262. 'hdPurchaseClear' => ['id' => 20, 'name' => 'hdPurchaseClear'],
  263. //供货商采购
  264. 'ghsPurchase' => ['id' => 25, 'name' => 'ghsPurchase'],
  265. //供货商出库
  266. 'ghsCheckOut' => ['id' => 26, 'name' => 'ghsCheckOut'],
  267. //供货商入库
  268. 'ghsCheckIn' => ['id' => 27, 'name' => 'ghsCheckIn'],
  269. 'usePtCoupon' => ['id' => 30, 'name' => 'usePtCoupon'],
  270. 'wastage' => ['id' => 35, 'name' => 'wastage'],
  271. //零售采购退款
  272. 'cgRefund' => ['id' => 38, 'name' => 'cgRefund'],
  273. //供货商销售退款
  274. 'saleRefund' => ['id' => 40, 'name' => 'saleRefund'],
  275. 'pd' => ['id' => 45, 'name' => 'pd'],
  276. //供货商的佣金 lqh 2021.12.11
  277. 'brokerage' => ['id' => 46, 'name' => 'brokerage'],
  278. //供货商销售单对账
  279. 'ghsXsClear' => ['id' => 20, 'name' => 'ghsXsClear'],
  280. //城市供货商的预订单多付退款
  281. 'ghsBookRefund' => ['id' => 48, 'name' => 'ghsBookRefund'],
  282. //花店预订退款
  283. 'hdBookRefund' => ['id' => 50, 'name' => 'hdBookRefund'],
  284. //城市供货商的预订单少付补款
  285. 'ghsBookOrderGetBack' => ['id' => 51, 'name' => 'ghsBookOrderGetBack'],
  286. //花店预订补尾款
  287. 'hdBookFinalPay' => ['id' => 52, 'name' => 'hdBookFinalPay'],
  288. 'hdCgPlant' => ['id' => 53, 'name' => 'hdCgPlant'],
  289. //花店订单退款
  290. 'hdOrderRefund' => ['id' => 54, 'name' => 'hdOrderRefund'],
  291. //存入现金
  292. 'inMoney' => ['id' => 55, 'name' => 'inMoney'],
  293. //取出现金
  294. 'outMoney' => ['id' => 56, 'name' => 'outMoney'],
  295. //支出登记
  296. 'expendRegister' => ['id' => 57, 'name' => 'expendRegister'],
  297. //花店销售结账单
  298. 'hdXsClear' => ['id' => 58, 'name' => 'hdXsClear'],
  299. 'hdRefund' => ['id' => 59, 'name' => 'hdRefund'],
  300. 'ljhApply' => ['id' => 60, 'name' => 'ljhApply'],
  301. //供货商结账支出
  302. 'ghsClearExpend' => ['id' => 61, 'name' => 'ghsClearExpend'],
  303. ],
  304. "capitalTypeList" => [//流水类型的对应链接,后台收支明细查看时跳转的链接
  305. 0 => ['link' => '/capital/order-detail', 'name' => '网店', 'orderLink' => '/order/detail', 'id' => 0,],
  306. 2 => ['link' => '/capital/active-order-detail', 'name' => '活动报名', 'id' => 2,],
  307. 4 => ['link' => '/capital/recharge-detail', 'name' => '充值', 'id' => 4,],
  308. 5 => ['link' => '/capital/user-unite', 'name' => '帐号关联', 'id' => 5,],
  309. 6 => ['link' => '/capital/draw-cash', 'name' => '提现', 'id' => 6,],
  310. 7 => ['link' => '/capital/apply-order-detail', 'name' => '接入申请', 'id' => 7,],
  311. 8 => ['link' => '/capital/merge-user', 'name' => '帐号合并', 'id' => 8,],
  312. 9 => ['link' => '/capital/renew', 'name' => '续费', 'id' => 9,],
  313. 10 => ['link' => '/capital/order-detail', 'name' => '订单', 'id' => 10,],
  314. 11 => ['link' => '/capital/purchase-detail', 'name' => '订单', 'id' => 11,],
  315. 12 => ['link' => '/capital/purchase-detail', 'name' => '培训报名', 'id' => 12,],
  316. 20 => ['link' => '', 'name' => '采购结算', 'id' => 20,],
  317. 25 => ['link' => '', 'name' => '采购', 'id' => 25,],
  318. 30 => ['link' => '', 'name' => '使用平台优惠券', 'id' => 30,],
  319. 35 => ['link' => '', 'name' => '报损', 'id' => 35,],
  320. 38 => ['link' => '', 'name' => '采购退款', 'id' => 38,],
  321. 40 => ['link' => '', 'name' => '销售退款', 'id' => 40,],
  322. 45 => ['link' => '', 'name' => '盘点', 'id' => 45,],
  323. 46 => ['link' => '', 'name' => '佣金', 'id' => 46,],
  324. 48 => ['link' => '', 'name' => '预订单多退少补', 'id' => 48,],
  325. 50 => ['link' => '', 'name' => '预订单多退少补', 'id' => 50,],
  326. 51 => ['link' => '', 'name' => '预订单补款', 'id' => 51,],
  327. 52 => ['link' => '', 'name' => '花店预订补尾款', 'id' => 52,],
  328. 53 => ['link' => '', 'name' => '采购盆栽等', 'id' => 53,],
  329. 54 => ['link' => '', 'name' => '退货退款', 'id' => 54,],
  330. 55 => ['link' => '', 'name' => '存入现金', 'id' => 55,],
  331. 56 => ['link' => '', 'name' => '取出现金', 'id' => 56,],
  332. 57 => ['link' => '', 'name' => '支出登记', 'id' => 57,],
  333. 58 => ['link' => '', 'name' => '结算', 'id' => 58,],
  334. 59 => ['link' => '', 'name' => '退货退款', 'id' => 59,],
  335. 60 => ['link' => '', 'name' => '零交会报名', 'id' => 60,],
  336. 61 => ['link' => '', 'name' => '结账支出', 'id' => 61,],
  337. ],
  338. //用户来源
  339. 'userSource' => [
  340. 0 => 'official',
  341. 1 => 'alipay',
  342. 2 => 'mini',
  343. 3 => 'app',
  344. ],
  345. 'userSourceGetId' => [
  346. 'official' => ['id' => 0, 'name' => 'official'],
  347. 'alipay' => ['id' => 1, 'name' => 'alipay'],
  348. 'mini' => ['id' => 2, 'name' => 'mini'],
  349. 'app' => ['id' => 3, 'name' => 'app'],
  350. ],
  351. //达达取消原因
  352. 'dadaCancelReason' => [
  353. [
  354. 'id' => 1,
  355. 'reason' => '没有配送员接单',
  356. ],
  357. [
  358. 'id' => 2,
  359. 'reason' => '配送员没来取货',
  360. ],
  361. [
  362. 'id' => 3,
  363. 'reason' => '配送员态度太差',
  364. ],
  365. [
  366. 'id' => 4,
  367. 'reason' => '顾客取消订单',
  368. ],
  369. [
  370. 'id' => 5,
  371. 'reason' => '订单填写错误',
  372. ],
  373. [
  374. 'id' => 34,
  375. 'reason' => '配送员让我取消此单',
  376. ],
  377. [
  378. 'id' => 35,
  379. 'reason' => '配送员不愿上门取货',
  380. ],
  381. [
  382. 'id' => 36,
  383. 'reason' => '我不需要配送了',
  384. ],
  385. [
  386. 'id' => 37,
  387. 'reason' => '配送员以各种理由表示无法完成订单',
  388. ],
  389. ],
  390. //来源
  391. 'fromType' => [
  392. 'shop' => 1,//门店
  393. 'mall' => 2,//商城
  394. 'friend' => 3,//微信客服号
  395. 'mt' => 4,//美团
  396. 'elm' => 5,//饿了么
  397. ],
  398. 'fromTypeMap' => [
  399. 1 => '门店',
  400. 2 => '商城',
  401. 3 => '微信',
  402. 4 => '美团',
  403. 5 => '饿了么',
  404. ],
  405. 'expendType' => [
  406. 'dz' => 0,//店租
  407. 'sd' => 1,//水电
  408. 'wy' => 2,//物业
  409. 'hs' => 3,//伙食
  410. 'fz' => 4,//房租
  411. 'qt' => 5,//其它
  412. ],
  413. 'expendTypeMap' => [
  414. 0 => '店租', 1 => '水电', 2 => '物业', 3 => '伙食', 4 => '房租', 5 => '其它',
  415. ],
  416. ];
  417. //取配置文件的值
  418. public static function getDict($category, $first = null, $second = null)
  419. {
  420. $respond = self::$data[$category];
  421. if (isset($first) && isset($second)) {
  422. if (isset($respond[$first][$second]) == false) {
  423. util::fail("没有找到相应字典 category:{$category} first:{$first} second:{$second}");
  424. }
  425. return $respond[$first][$second];
  426. }
  427. if (isset($first)) {
  428. if (isset($respond[$first]) == false) {
  429. util::fail("没有找到相应字典 category:{$category} first:{$first}");
  430. }
  431. return $respond[$first];
  432. }
  433. return $respond;
  434. }
  435. //列出所有的常量 ssh 2021.3.18
  436. public static function get()
  437. {
  438. $respond = self::$data;
  439. //根据环境获取小程序原始ID
  440. if (isset($respond['miniOriginalId']['dev'])) {
  441. $respond['miniOriginalId']['current'] = $respond['miniOriginalId']['dev'];
  442. }
  443. if (getenv('YII_ENV') == 'production') {
  444. if (isset($respond['miniOriginalId']['product'])) {
  445. $respond['miniOriginalId']['current'] = $respond['miniOriginalId']['product'];
  446. }
  447. }
  448. if (getenv('YII_ENV') != 'production') {
  449. $respond['hdMiniMessage'] = $respond['hdMiniMessageDev'];
  450. }
  451. return $respond;
  452. }
  453. }