| | |
| | | */ |
| | | @RequestMapping(value = "/setUp") |
| | | @ResponseBody |
| | | public Object setUp(String type, BigDecimal one, Integer two, Integer three, Integer openValue, |
| | | public Object setUp(Integer openCityId, String type, BigDecimal one, Integer two, Integer three, Integer openValue, |
| | | Integer isSpecialCar,Integer isTaxiCar, |
| | | Double zc1,Integer zc2,Double zc3, |
| | | Double zc4,Integer zc5,Double zc6, |
| | |
| | | if("reassigningSet".equals(type)){ |
| | | TSysReformist reformist = tSysReformistService.selectOne(new EntityWrapper<TSysReformist>().eq("companyId", shiroExtUtil.getUser().getObjectId())); |
| | | if (SinataUtil.isNotEmpty(reformist)){ |
| | | reformist.setOpenCityId(openCityId); |
| | | reformist.setMoney(one); |
| | | reformist.setIsSpecialCar(isSpecialCar); |
| | | reformist.setIsTaxiCar(isTaxiCar); |
| | | tSysReformistService.updateById(reformist); |
| | | }else { |
| | | reformist = new TSysReformist(); |
| | | reformist.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | reformist.setOpenCityId(openCityId); |
| | | reformist.setMoney(one); |
| | | reformist.setIsSpecialCar(isSpecialCar); |
| | | reformist.setIsTaxiCar(isTaxiCar); |
| | |
| | | driverPayDaysService.updateById(tDriverPayDays); |
| | | }else { |
| | | tDriverPayDays = new TDriverPayDays(); |
| | | tDriverPayDays.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | tDriverPayDays.setUpdateTime(new Date()); |
| | | tDriverPayDays.setDay(driverDays); |
| | | driverPayDaysService.insert(tDriverPayDays); |
| | |
| | | if("integralSet".equals(type)){ |
| | | TSysIntegral integral = tSysIntegralService.selectOne(new EntityWrapper<TSysIntegral>().eq("companyId", shiroExtUtil.getUser().getObjectId())); |
| | | if (SinataUtil.isNotEmpty(integral)){ |
| | | integral.setOpenCityId(openCityId); |
| | | integral.setIntegral(two); |
| | | tSysIntegralService.updateById(integral); |
| | | }else { |
| | | integral = new TSysIntegral(); |
| | | integral.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | integral.setOpenCityId(openCityId); |
| | | integral.setIntegral(two); |
| | | tSysIntegralService.insert(integral); |
| | | } |
| | |
| | | if("faceRecognitionSettings".equals(type)){ |
| | | TSysFaceDistinguish faceDistinguish = tSysFaceDistinguishService.selectOne(new EntityWrapper<TSysFaceDistinguish>().eq("companyId", shiroExtUtil.getUser().getObjectId())); |
| | | if (SinataUtil.isNotEmpty(faceDistinguish)){ |
| | | faceDistinguish.setOpenCityId(openCityId); |
| | | faceDistinguish.setIsOpen(three); |
| | | faceDistinguish.setMinuteNum(openValue); |
| | | tSysFaceDistinguishService.updateById(faceDistinguish); |
| | |
| | | faceDistinguish = new TSysFaceDistinguish(); |
| | | faceDistinguish.setIsOpen(three); |
| | | faceDistinguish.setMinuteNum(openValue); |
| | | faceDistinguish.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | faceDistinguish.setOpenCityId(openCityId); |
| | | tSysFaceDistinguishService.insert(faceDistinguish); |
| | | } |
| | | } |
| | |
| | | //快车推单(第一轮) |
| | | TSysPushOrder zcOne = tSysPushOrderService.selectOne(new EntityWrapper<TSysPushOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("pushType", 1).eq("type", 1)); |
| | | if (SinataUtil.isNotEmpty(zcOne)){ |
| | | zcOne.setOpenCityId(openCityId); |
| | | zcOne.setPushDistance(zc1); |
| | | zcOne.setPushTime(zc2); |
| | | zcOne.setDriverProportion(zc3); |
| | |
| | | zcOne.setPushDistance(zc1); |
| | | zcOne.setPushTime(zc2); |
| | | zcOne.setDriverProportion(zc3); |
| | | zcOne.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | zcOne.setOpenCityId(openCityId); |
| | | zcOne.setPushType(1); |
| | | zcOne.setType(1); |
| | | tSysPushOrderService.insert(zcOne); |
| | |
| | | //快车推单(第二轮) |
| | | TSysPushOrder zcTwo = tSysPushOrderService.selectOne(new EntityWrapper<TSysPushOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("pushType", 1).eq("type", 2)); |
| | | if (SinataUtil.isNotEmpty(zcTwo)){ |
| | | zcTwo.setOpenCityId(openCityId); |
| | | zcTwo.setPushDistance(zc4); |
| | | zcTwo.setPushTime(zc5); |
| | | zcTwo.setDriverProportion(zc6); |
| | |
| | | zcTwo.setPushDistance(zc4); |
| | | zcTwo.setPushTime(zc5); |
| | | zcTwo.setDriverProportion(zc6); |
| | | zcTwo.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | zcTwo.setOpenCityId(openCityId); |
| | | zcTwo.setPushType(1); |
| | | zcTwo.setType(2); |
| | | tSysPushOrderService.insert(zcTwo); |
| | |
| | | //快车推单(第三轮) |
| | | TSysPushOrder zcThree = tSysPushOrderService.selectOne(new EntityWrapper<TSysPushOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("pushType", 1).eq("type", 3)); |
| | | if (SinataUtil.isNotEmpty(zcThree)){ |
| | | zcThree.setOpenCityId(openCityId); |
| | | zcThree.setPushDistance(zc7); |
| | | zcThree.setPushTime(zc8); |
| | | zcThree.setDriverProportion(zc9); |
| | |
| | | zcThree.setPushDistance(zc7); |
| | | zcThree.setPushTime(zc8); |
| | | zcThree.setDriverProportion(zc9); |
| | | zcThree.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | zcThree.setOpenCityId(openCityId); |
| | | zcThree.setPushType(1); |
| | | zcThree.setType(3); |
| | | tSysPushOrderService.insert(zcThree); |
| | |
| | | //出租车推单(第一轮) |
| | | TSysPushOrder czcOne = tSysPushOrderService.selectOne(new EntityWrapper<TSysPushOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("pushType", 2).eq("type", 1)); |
| | | if (SinataUtil.isNotEmpty(czcOne)){ |
| | | czcOne.setOpenCityId(openCityId); |
| | | czcOne.setPushDistance(czc1); |
| | | czcOne.setPushTime(czc2); |
| | | czcOne.setDriverProportion(czc3); |
| | |
| | | czcOne.setPushDistance(czc1); |
| | | czcOne.setPushTime(czc2); |
| | | czcOne.setDriverProportion(czc3); |
| | | czcOne.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | czcOne.setOpenCityId(openCityId); |
| | | czcOne.setPushType(2); |
| | | czcOne.setType(1); |
| | | tSysPushOrderService.insert(czcOne); |
| | |
| | | //出租车推单(第二轮) |
| | | TSysPushOrder czcTwo = tSysPushOrderService.selectOne(new EntityWrapper<TSysPushOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("pushType", 2).eq("type", 2)); |
| | | if (SinataUtil.isNotEmpty(czcTwo)){ |
| | | czcTwo.setOpenCityId(openCityId); |
| | | czcTwo.setPushDistance(czc4); |
| | | czcTwo.setPushTime(czc5); |
| | | czcTwo.setDriverProportion(czc6); |
| | |
| | | czcTwo.setPushDistance(czc4); |
| | | czcTwo.setPushTime(czc5); |
| | | czcTwo.setDriverProportion(czc6); |
| | | czcTwo.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | czcTwo.setOpenCityId(openCityId); |
| | | czcTwo.setPushType(2); |
| | | czcTwo.setType(2); |
| | | tSysPushOrderService.insert(czcTwo); |
| | |
| | | //出租车推单(第三轮) |
| | | TSysPushOrder czcThree = tSysPushOrderService.selectOne(new EntityWrapper<TSysPushOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("pushType", 2).eq("type", 3)); |
| | | if (SinataUtil.isNotEmpty(czcThree)){ |
| | | czcThree.setOpenCityId(openCityId); |
| | | czcThree.setPushDistance(czc7); |
| | | czcThree.setPushTime(czc8); |
| | | czcThree.setDriverProportion(czc9); |
| | |
| | | czcThree.setPushDistance(czc7); |
| | | czcThree.setPushTime(czc8); |
| | | czcThree.setDriverProportion(czc9); |
| | | czcThree.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | czcThree.setOpenCityId(openCityId); |
| | | czcThree.setPushType(2); |
| | | czcThree.setType(3); |
| | | tSysPushOrderService.insert(czcThree); |
| | |
| | | //普通取消设置(快车) |
| | | TSysCancleOrder ptCancelOne = tSysCancleOrderService.selectOne(new EntityWrapper<TSysCancleOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 1).eq("orderType", 1)); |
| | | if (SinataUtil.isNotEmpty(ptCancelOne)){ |
| | | ptCancelOne.setOpenCityId(openCityId); |
| | | ptCancelOne.setMinuteNum(ptCancel1); |
| | | ptCancelOne.setMoney(ptCancel2); |
| | | tSysCancleOrderService.updateById(ptCancelOne); |
| | |
| | | ptCancelOne = new TSysCancleOrder(); |
| | | ptCancelOne.setMinuteNum(ptCancel1); |
| | | ptCancelOne.setMoney(ptCancel2); |
| | | ptCancelOne.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | ptCancelOne.setOpenCityId(openCityId); |
| | | ptCancelOne.setType(1); |
| | | ptCancelOne.setOrderType(1); |
| | | tSysCancleOrderService.insert(ptCancelOne); |
| | |
| | | //普通取消设置(出租车) |
| | | TSysCancleOrder ptCancelTwo = tSysCancleOrderService.selectOne(new EntityWrapper<TSysCancleOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 1).eq("orderType", 2)); |
| | | if (SinataUtil.isNotEmpty(ptCancelTwo)){ |
| | | ptCancelTwo.setOpenCityId(openCityId); |
| | | ptCancelTwo.setMinuteNum(ptCancel3); |
| | | ptCancelTwo.setMoney(ptCancel4); |
| | | tSysCancleOrderService.updateById(ptCancelTwo); |
| | |
| | | ptCancelTwo = new TSysCancleOrder(); |
| | | ptCancelTwo.setMinuteNum(ptCancel3); |
| | | ptCancelTwo.setMoney(ptCancel4); |
| | | ptCancelTwo.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | ptCancelTwo.setOpenCityId(openCityId); |
| | | ptCancelTwo.setType(1); |
| | | ptCancelTwo.setOrderType(2); |
| | | tSysCancleOrderService.insert(ptCancelTwo); |
| | |
| | | //普通取消设置(跨城出行) |
| | | TSysCancleOrder ptCancelThree = tSysCancleOrderService.selectOne(new EntityWrapper<TSysCancleOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 1).eq("orderType", 3)); |
| | | if (SinataUtil.isNotEmpty(ptCancelThree)){ |
| | | ptCancelThree.setOpenCityId(openCityId); |
| | | ptCancelThree.setMinuteNum(ptCancel5); |
| | | ptCancelThree.setMoney(ptCancel6); |
| | | tSysCancleOrderService.updateById(ptCancelThree); |
| | |
| | | ptCancelThree = new TSysCancleOrder(); |
| | | ptCancelThree.setMinuteNum(ptCancel5); |
| | | ptCancelThree.setMoney(ptCancel6); |
| | | ptCancelThree.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | ptCancelThree.setOpenCityId(openCityId); |
| | | ptCancelThree.setType(1); |
| | | ptCancelThree.setOrderType(3); |
| | | tSysCancleOrderService.insert(ptCancelThree); |
| | |
| | | //预约取消设置(快车) |
| | | TSysCancleOrder yyCancelOne = tSysCancleOrderService.selectOne(new EntityWrapper<TSysCancleOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 2).eq("orderType", 1)); |
| | | if (SinataUtil.isNotEmpty(yyCancelOne)){ |
| | | yyCancelOne.setOpenCityId(openCityId); |
| | | yyCancelOne.setMinuteNum(yyCancel1); |
| | | yyCancelOne.setMoney(yyCancel2); |
| | | tSysCancleOrderService.updateById(yyCancelOne); |
| | |
| | | yyCancelOne = new TSysCancleOrder(); |
| | | yyCancelOne.setMinuteNum(yyCancel1); |
| | | yyCancelOne.setMoney(yyCancel2); |
| | | yyCancelOne.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | yyCancelOne.setOpenCityId(openCityId); |
| | | yyCancelOne.setType(2); |
| | | yyCancelOne.setOrderType(1); |
| | | tSysCancleOrderService.insert(yyCancelOne); |
| | |
| | | //预约取消设置(出租车) |
| | | TSysCancleOrder yyCancelTwo = tSysCancleOrderService.selectOne(new EntityWrapper<TSysCancleOrder>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 2).eq("orderType", 2)); |
| | | if (SinataUtil.isNotEmpty(yyCancelTwo)){ |
| | | yyCancelTwo.setOpenCityId(openCityId); |
| | | yyCancelTwo.setMinuteNum(yyCancel3); |
| | | yyCancelTwo.setMoney(yyCancel4); |
| | | tSysCancleOrderService.updateById(yyCancelTwo); |
| | |
| | | yyCancelTwo = new TSysCancleOrder(); |
| | | yyCancelTwo.setMinuteNum(yyCancel3); |
| | | yyCancelTwo.setMoney(yyCancel4); |
| | | yyCancelTwo.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | yyCancelTwo.setOpenCityId(openCityId); |
| | | yyCancelTwo.setType(2); |
| | | yyCancelTwo.setOrderType(2); |
| | | tSysCancleOrderService.insert(yyCancelTwo); |
| | |
| | | jsonObject.put("num5", pdpd5); |
| | | jsonObject.put("num6", pdpd6); |
| | | if (SinataUtil.isNotEmpty(spellOrderRule)) { |
| | | spellOrderRule.setOpenCityId(openCityId); |
| | | spellOrderRule.setContent(jsonObject.toJSONString()); |
| | | spellOrderRuleService.updateById(spellOrderRule); |
| | | } else { |
| | | spellOrderRule = new SpellOrderRule(); |
| | | spellOrderRule.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | spellOrderRule.setOpenCityId(openCityId); |
| | | spellOrderRule.setContent(jsonObject.toJSONString()); |
| | | spellOrderRuleService.insert(spellOrderRule); |
| | | } |
| | |
| | | //报警电话 |
| | | TPhone phoneOne = tPhoneService.selectOne(new EntityWrapper<TPhone>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 1)); |
| | | if (SinataUtil.isNotEmpty(phoneOne)){ |
| | | phoneOne.setOpenCityId(openCityId); |
| | | phoneOne.setPhone(phone1); |
| | | tPhoneService.updateById(phoneOne); |
| | | }else { |
| | | phoneOne = new TPhone(); |
| | | phoneOne.setPhone(phone1); |
| | | phoneOne.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | phoneOne.setOpenCityId(openCityId); |
| | | phoneOne.setType(1); |
| | | if (shiroExtUtil.getUser().getRoleType() == 1) { |
| | | phoneOne.setPlatform(1); |
| | |
| | | //客服电话 |
| | | TPhone phoneTwo = tPhoneService.selectOne(new EntityWrapper<TPhone>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 2)); |
| | | if (SinataUtil.isNotEmpty(phoneTwo)){ |
| | | phoneTwo.setOpenCityId(openCityId); |
| | | phoneTwo.setPhone(phone2); |
| | | tPhoneService.updateById(phoneTwo); |
| | | }else { |
| | | phoneTwo = new TPhone(); |
| | | phoneTwo.setPhone(phone2); |
| | | phoneTwo.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | phoneTwo.setOpenCityId(openCityId); |
| | | phoneTwo.setType(2); |
| | | if (shiroExtUtil.getUser().getRoleType() == 1) { |
| | | phoneTwo.setPlatform(1); |
| | |
| | | //客服电话 |
| | | TPhone phone = tPhoneService.selectOne(new EntityWrapper<TPhone>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 3)); |
| | | if (SinataUtil.isNotEmpty(phone)){ |
| | | phone.setOpenCityId(openCityId); |
| | | phone.setPhone(phone3); |
| | | tPhoneService.updateById(phone); |
| | | }else { |
| | | phone = new TPhone(); |
| | | phone.setPhone(phone3); |
| | | phone.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | phone.setOpenCityId(openCityId); |
| | | phone.setType(3); |
| | | if (shiroExtUtil.getUser().getRoleType() == 1) { |
| | | phone.setPlatform(1); |
| | |
| | | //招聘电话 |
| | | TPhone phoneFive = tPhoneService.selectOne(new EntityWrapper<TPhone>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 5)); |
| | | if (SinataUtil.isNotEmpty(phoneFive)){ |
| | | phoneFive.setOpenCityId(openCityId); |
| | | phoneFive.setPhone(phone5); |
| | | tPhoneService.updateById(phoneFive); |
| | | }else { |
| | | phoneFive = new TPhone(); |
| | | phoneFive.setPhone(phone5); |
| | | phoneFive.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | phoneFive.setOpenCityId(openCityId); |
| | | phoneFive.setType(5); |
| | | if (shiroExtUtil.getUser().getRoleType() == 1) { |
| | | phoneFive.setPlatform(1); |
| | |
| | | //95128电召电话 |
| | | TPhone phoneFour = tPhoneService.selectOne(new EntityWrapper<TPhone>().eq("companyId", shiroExtUtil.getUser().getObjectId()).eq("type", 4)); |
| | | if (SinataUtil.isNotEmpty(phoneFour)){ |
| | | phoneFour.setOpenCityId(openCityId); |
| | | phoneFour.setPhone(phone4); |
| | | tPhoneService.updateById(phoneFour); |
| | | }else { |
| | | phoneFour = new TPhone(); |
| | | phoneFour.setPhone(phone4); |
| | | phoneFour.setCompanyId(shiroExtUtil.getUser().getObjectId()); |
| | | phoneFour.setOpenCityId(openCityId); |
| | | phoneFour.setType(4); |
| | | if (shiroExtUtil.getUser().getRoleType() == 1) { |
| | | phoneFour.setPlatform(1); |
| | |
| | | if("timeoutDeductionSettings".equals(type)){ |
| | | timeoutMoneyService.delete(new EntityWrapper<TSysTimeoutMoney>().ne("id",0)); |
| | | TSysTimeoutMoney tSysTimeoutMoney = new TSysTimeoutMoney(); |
| | | tSysTimeoutMoney.setOpenCityId(openCityId); |
| | | tSysTimeoutMoney.setDeductMoney(deductMoney); |
| | | tSysTimeoutMoney.setTimeOut(timeOut); |
| | | timeoutMoneyService.insert(tSysTimeoutMoney); |
| | |
| | | showModular1.setType(1); |
| | | showModular1.setDriverShow(sjzp2); |
| | | showModular1.setUserShow(sjzp1); |
| | | showModular1.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular1); |
| | | }else{ |
| | | showModular1.setDriverShow(sjzp2); |
| | | showModular1.setUserShow(sjzp1); |
| | | showModular1.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular1); |
| | | } |
| | | //租车 |
| | |
| | | showModular2.setType(2); |
| | | showModular2.setDriverShow(zuc2); |
| | | showModular2.setUserShow(zuc1); |
| | | showModular2.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular2); |
| | | }else{ |
| | | showModular2.setDriverShow(zuc2); |
| | | showModular2.setUserShow(zuc1); |
| | | showModular2.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular2); |
| | | } |
| | | //买车 |
| | |
| | | showModular3.setType(3); |
| | | showModular3.setDriverShow(mc2); |
| | | showModular3.setUserShow(mc1); |
| | | showModular3.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular3); |
| | | }else{ |
| | | showModular3.setDriverShow(mc2); |
| | | showModular3.setUserShow(mc1); |
| | | showModular3.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular3); |
| | | } |
| | | //出租个人车辆 |
| | |
| | | showModular4.setType(4); |
| | | showModular4.setDriverShow(czgrcl2); |
| | | showModular4.setUserShow(czgrcl1); |
| | | showModular4.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular4); |
| | | }else{ |
| | | showModular4.setDriverShow(czgrcl2); |
| | | showModular4.setUserShow(czgrcl1); |
| | | showModular4.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular4); |
| | | } |
| | | //卖车 |
| | |
| | | showModular5.setType(5); |
| | | showModular5.setDriverShow(mac2); |
| | | showModular5.setUserShow(mac1); |
| | | showModular5.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular5); |
| | | }else{ |
| | | showModular5.setDriverShow(mac2); |
| | | showModular5.setUserShow(mac1); |
| | | showModular5.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular5); |
| | | } |
| | | //商家中心 |
| | |
| | | showModular6.setType(6); |
| | | showModular6.setDriverShow(sjzx2); |
| | | showModular6.setUserShow(sjzx1); |
| | | showModular6.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular6); |
| | | }else{ |
| | | showModular6.setDriverShow(sjzx2); |
| | | showModular6.setUserShow(sjzx1); |
| | | showModular6.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular6); |
| | | } |
| | | //打车卡 |
| | |
| | | showModular7.setType(7); |
| | | showModular7.setDriverShow(dck2); |
| | | showModular7.setUserShow(dck1); |
| | | showModular7.setOpenCityId(openCityId); |
| | | showModularService.insert(showModular7); |
| | | }else{ |
| | | showModular7.setDriverShow(dck2); |
| | | showModular7.setUserShow(dck1); |
| | | showModular7.setOpenCityId(openCityId); |
| | | showModularService.updateById(showModular7); |
| | | } |
| | | } |