Merge remote-tracking branch 'origin/huacheng_test' into huacheng_test
| | |
| | | @ApiModelProperty("分类id") |
| | | private Integer classifyId; |
| | | |
| | | @ApiModelProperty("分类id父id") |
| | | private Integer parentClassifyId; |
| | | |
| | | @ApiModelProperty("搜索数据类型1.办事部门2.办事指南 3.推荐办事指南4.分类") |
| | | private Integer type; |
| | | |
| | |
| | | for (String departmentId : departmentIdsParent) { |
| | | OrganizationChartEntity organizationChart = organizationChartMapper.selectOne(new QueryWrapper<OrganizationChartEntity>().lambda().eq(OrganizationChartEntity::getId, departmentId)); |
| | | OrganizationChartEntity organizationChartParent = organizationChartMapper.selectOne(new QueryWrapper<OrganizationChartEntity>().lambda().eq(OrganizationChartEntity::getId, organizationChart.getParentId())); |
| | | departmentIds.add(organizationChartParent.getId().toString()); |
| | | if (organizationChartParent!=null) |
| | | { |
| | | departmentIds.add(organizationChartParent.getId().toString()); |
| | | } |
| | | } |
| | | sysUsers = sysUserMapper.selectListByDepartmentId(departmentIds, "," + transactionEvent.getId(), transactionEvent.getId() + ",");//获取导半人员 |
| | | if (sysUsers.size() == 0) { |
| | |
| | | WxUtil wxUtil = new WxUtil(); |
| | | String accessToken = "0"; |
| | | try { |
| | | accessToken = stringRedisTemplate.boundValueOps("access_token:access_token:" + ConstantPropertiesUtil.WX_OPEN_APP_ID).get().toString(); |
| | | accessToken = stringRedisTemplate.boundValueOps("access_token:access_token:" + ConstantPropertiesUtil.WX_OPEN_APP_ID).get(); |
| | | } catch (Exception e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | |
| | | </select> |
| | | |
| | | <select id="selectSearchList" resultType="com.dg.core.db.manual.pojo.Search"> |
| | | select id, title, content,classify_id, type from ( select id,matter_name title,concat((select classify_name from automessage_classify_administration |
| | | select id, title, content,classify_id, type,parentClassifyId from ( select id,matter_name title,concat((select classify_name from automessage_classify_administration |
| | | where id=(select parent_id from automessage_classify_administration where id=automessage_transaction_event.classify_id)), |
| | | '/',(select classify_name from automessage_classify_administration where id=automessage_transaction_event.classify_id)) content,classify_id, |
| | | '/',(select classify_name from automessage_classify_administration where id=automessage_transaction_event.classify_id)) content, |
| | | classify_id,(select parent_id from automessage_classify_administration where id=automessage_transaction_event.classify_id) parentClassifyId, |
| | | 2 type from automessage_transaction_event) k |
| | | where k.title like concat('%',#{keyWord}, '%') or k.content like concat('%',#{keyWord}, '%') |
| | | </select> |
| | |
| | | |
| | | import cn.hutool.core.date.DateUtil; |
| | | import com.panzhihua.applets.model.dtos.IDTO; |
| | | import com.panzhihua.common.constants.Constants; |
| | | import com.panzhihua.common.controller.BaseController; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.property.ComPropertyRepairVO; |
| | | import com.panzhihua.common.service.property.PropertyService; |
| | | import com.panzhihua.common.utlis.RSAUtils; |
| | | import com.panzhihua.common.utlis.StringUtils; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | comPropertyRepairVO.setCreateTime(DateUtil.date()); |
| | | comPropertyRepairVO.setCreateBy(this.getUserId()); |
| | | comPropertyRepairVO.setRepairStatus(ComPropertyRepairVO.status.dcl); |
| | | try { |
| | | comPropertyRepairVO.setRepairName(RSAUtils.decrypt(comPropertyRepairVO.getRepairName(), Constants.PRIVATE_KEY)); |
| | | comPropertyRepairVO.setRepairPhone(RSAUtils.decrypt(comPropertyRepairVO.getRepairPhone(), Constants.PRIVATE_KEY)); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | return this.propertyService.comPropertyRepairInsert(comPropertyRepairVO); |
| | | } |
| | | |
| | |
| | | public R deleteFeedback(@RequestParam("id") Long id) { |
| | | return userService.deleteFeedback(id); |
| | | } |
| | | |
| | | @ApiOperation("回复意见反馈") |
| | | @PostMapping("feedback") |
| | | public R replyFeedBack(@RequestBody SysUserFeedbackVO sysUserFeedbackVO){ |
| | | return userService.updateFeedBack(sysUserFeedbackVO); |
| | | } |
| | | } |
New file |
| | |
| | | package com.panzhihua.common.model.dtos.community; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | @Data |
| | | public class ComActProceedingsDTO implements Serializable { |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @ApiModelProperty("id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | @ApiModelProperty("姓名") |
| | | private String name; |
| | | |
| | | /** |
| | | * 所属单位名 |
| | | */ |
| | | @ApiModelProperty("所属单位名") |
| | | private String unitName; |
| | | |
| | | /** |
| | | * 所属单位id |
| | | */ |
| | | @ApiModelProperty("所属单位id") |
| | | private Long unitId; |
| | | |
| | | /** |
| | | * 简介 |
| | | */ |
| | | @ApiModelProperty("简介") |
| | | private String introduce; |
| | | |
| | | /** |
| | | * 是否删除0否1是 |
| | | */ |
| | | @ApiModelProperty("是否删除") |
| | | private Boolean delFlag; |
| | | |
| | | /** |
| | | * 状态0可用1禁用 |
| | | */ |
| | | @ApiModelProperty("是否可用") |
| | | private Boolean status; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * 修改人 |
| | | */ |
| | | private Date updateBy; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | } |
| | |
| | | @ApiModelProperty("显示时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date releaseTime; |
| | | |
| | | /** |
| | | * 是否置顶 |
| | | * */ |
| | | @ApiModelProperty("广告是否置顶0否1是") |
| | | private Integer onTop; |
| | | |
| | | /** |
| | | * 图片链接 |
| | | * */ |
| | | @ApiModelProperty("图片链接") |
| | | private String imageUrl; |
| | | } |
New file |
| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | public class ComActProceedingsVO implements Serializable { |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @ApiModelProperty("id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | @ApiModelProperty("姓名") |
| | | private String name; |
| | | |
| | | /** |
| | | * 所属单位名 |
| | | */ |
| | | @ApiModelProperty("所属单位名") |
| | | private String unitName; |
| | | |
| | | /** |
| | | * 所属单位id |
| | | */ |
| | | @ApiModelProperty("所属单位id") |
| | | private Long unitId; |
| | | |
| | | /** |
| | | * 简介 |
| | | */ |
| | | @ApiModelProperty("简介") |
| | | private String introduce; |
| | | |
| | | /** |
| | | * 是否删除0否1是 |
| | | */ |
| | | @ApiModelProperty("是否删除") |
| | | private Boolean delFlag; |
| | | |
| | | /** |
| | | * 状态0可用1禁用 |
| | | */ |
| | | @ApiModelProperty("是否可用") |
| | | private Boolean status; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * 修改人 |
| | | */ |
| | | private Date updateBy; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | } |
| | |
| | | private Integer choice; |
| | | @ApiModelProperty("排序方式 正序 ASC") |
| | | private String sort; |
| | | |
| | | private String appId; |
| | | } |
| | |
| | | |
| | | @ApiModelProperty("排序方式 正序 ASC") |
| | | private String sort; |
| | | |
| | | private String appId; |
| | | } |
| | |
| | | |
| | | @ApiModelProperty("手机号") |
| | | private String phone; |
| | | |
| | | @ApiModelProperty("回复内容") |
| | | private String reply; |
| | | } |
| | |
| | | import java.util.List; |
| | | |
| | | import com.panzhihua.common.model.dtos.PageBaseDTO; |
| | | import com.panzhihua.common.model.dtos.community.ActivityInviteDTO; |
| | | import com.panzhihua.common.model.dtos.community.DiscussVoteOptionDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageActivityInviteDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageVoteSituationDTO; |
| | | import com.panzhihua.common.model.dtos.community.*; |
| | | import com.panzhihua.common.model.dtos.community.acid.*; |
| | | import com.panzhihua.common.model.dtos.community.dpc.AddDpcDTO; |
| | | import com.panzhihua.common.model.dtos.community.dpc.EditDpcDTO; |
| | |
| | | import com.panzhihua.common.model.dtos.community.reserve.*; |
| | | import com.panzhihua.common.model.dtos.community.sanshuo.*; |
| | | import com.panzhihua.common.model.dtos.community.warehouse.ComActWarehouseApplyDTO; |
| | | import com.panzhihua.common.model.dtos.community.GetIdentityEidTokenDTO; |
| | | import com.panzhihua.common.model.dtos.community.cluster.PageClusterMemberDto; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import com.panzhihua.common.model.dtos.community.discuss.ComActDiscussDetailDTO; |
| | |
| | | import com.panzhihua.common.model.dtos.common.PageComMngVolunteerOrgTeamDto; |
| | | import com.panzhihua.common.model.dtos.common.PageComMngVolunteerServiceTypeDto; |
| | | import com.panzhihua.common.model.dtos.common.PageComMngVolunteerSkillDto; |
| | | import com.panzhihua.common.model.dtos.community.AddComActDynTypeDTO; |
| | | import com.panzhihua.common.model.dtos.community.AddIdentityAuthDTO; |
| | | import com.panzhihua.common.model.dtos.community.CancelRecordDTO; |
| | | import com.panzhihua.common.model.dtos.community.CascadeHouseDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActDiscussCommentDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActDiscussCommentUserDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActDiscussDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActDiscussOptionUserDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActDiscussUserDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActEasyPhotoCommentDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComActEasyPhotoCommentUserDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComCvtBusinessDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComCvtCategoryDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComCvtServeDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComExServicemanDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngCarAppletDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngCarSaveDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationEditDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationHouseAdminDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationHouseEditAdminDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationHouseInsertAdminDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationHouseUserVO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngPopulationTagDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComMngRealCompanyBelongsDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComOpsHouseDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComPropertyPublicityDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwDangerReportEditDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwDangerReportHandleDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwDangerReportRectifyDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwPatrolRecordAddDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwPatrolRecordEditDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwPatrolRecordPageDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwRotaPageDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwRotaSaveDTO; |
| | | import com.panzhihua.common.model.dtos.community.ComSwSafetyWorkEditDTO; |
| | | import com.panzhihua.common.model.dtos.community.DisabledPersonsDTO; |
| | | import com.panzhihua.common.model.dtos.community.EditComActDynTypeDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthAddByFamilyDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthAddDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthDeleteDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthEditDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthElderlyDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthFeedbackAddDTO; |
| | | import com.panzhihua.common.model.dtos.community.EldersAuthTypeQueryDTO; |
| | | import com.panzhihua.common.model.dtos.community.ExportComMngCarExcelDTO; |
| | | import com.panzhihua.common.model.dtos.community.ExportRealAssetsExcelDTO; |
| | | import com.panzhihua.common.model.dtos.community.ExportRealCompanyExcelDTO; |
| | | import com.panzhihua.common.model.dtos.community.GrantRewardDTO; |
| | | import com.panzhihua.common.model.dtos.community.KeyPersonInfoDTO; |
| | | import com.panzhihua.common.model.dtos.community.OperationDetailDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageActWorkGuideDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComActDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComActDiscussCommentDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComActDiscussDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComActDynTypeDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComActEasyPhotoCommentDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComCvtBusinessAppletsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComCvtBusinessDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComCvtCategoryDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComCvtServeDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComEldersRecordsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComMngCarDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComMngRealAssetsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComMngRealCompanyDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComMngVillageDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComOpsHouseDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComPropertyPublicityDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageComStreetDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageElderAuthRecordsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageEldersAuthDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageEldersAuthElderlyDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageEldersAuthHistoryDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageEldersAuthRecordDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageIdentityAuthRecordDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageQuestnaireAnswerDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageQuestnaireDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageQuestnaireSubDetailsDTO; |
| | | import com.panzhihua.common.model.dtos.community.PageUserReserveDTO; |
| | | import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDTO; |
| | | import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenEventDetailDTO; |
| | | import com.panzhihua.common.model.dtos.community.bigscreen.BigScreenStatisticAgeGenderDTO; |
| | |
| | | */ |
| | | @GetMapping("selectAutomessageSysUserById") |
| | | R selectAutomessageSysUserById(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 分页查询议事委员会列表 |
| | | * */ |
| | | @GetMapping("/proceedings/list") |
| | | R proceedingsList(@RequestParam(value = "page",required = false) Integer page, |
| | | @RequestParam(value = "size",required = false) Integer size, |
| | | @RequestParam(value = "keyWord",required = false) String keyWord); |
| | | /** |
| | | * 添加或修改议事委员会 |
| | | * */ |
| | | @PostMapping("/proceedings") |
| | | R addOrUpdateProceedings(@RequestBody ComActProceedingsDTO comActProceedingsDTO); |
| | | |
| | | } |
| | |
| | | * */ |
| | | @GetMapping("/removeExpertRole") |
| | | R removeExpertRole(@RequestParam(value = "phone",required = false) String phone); |
| | | |
| | | /** |
| | | *回复反馈意见或修改返回意见的回复 |
| | | * */ |
| | | @PostMapping("/feedBackReply") |
| | | R updateFeedBack(@RequestBody SysUserFeedbackVO sysUserFeedbackVO); |
| | | } |
| | |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenHatchStatisticsInfo; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.EquipmentPointMapDataVO; |
| | | import com.panzhihua.common.model.vos.community.social.SocialProjectVO; |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyBuildingComPbDynVO; |
| | | import com.panzhihua.common.service.partybuilding.PartyBuildingWestService; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | import com.panzhihua.common.model.vos.community.switchs.StreetAllAppletsVO; |
| | | import com.panzhihua.common.model.vos.neighbor.ComActNeighborCircleAdminVO; |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyBuildingActivityVO; |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyBuildingComPbDynVO; |
| | | import com.panzhihua.common.model.vos.property.ComPropertyAlarmVO; |
| | | import com.panzhihua.common.model.vos.screen.ScreenDrawEventPopulationTotalVO; |
| | | import com.panzhihua.common.model.vos.screen.ScreenDrawEventVO; |
| | |
| | | private UserService userService; |
| | | @Resource |
| | | private PartyBuildingService partyBuildingService; |
| | | @Resource |
| | | private PartyBuildingWestService partyBuildingWestService; |
| | | |
| | | @ApiOperation(value = "大屏测试接口") |
| | | @GetMapping("/test/noToken") |
| | |
| | | @PostMapping("/comprehensive/partydyn") |
| | | public R<BigScreenStatisticPartyOrg> partydyn(@RequestBody PartyBuildingComPbDynVO partyBuildingComPbDynVO) { |
| | | partyBuildingComPbDynVO.setType(1); |
| | | return partyBuildingService.pageYnamic(partyBuildingComPbDynVO); |
| | | partyBuildingComPbDynVO.setAppId(this.getAppId()); |
| | | return partyBuildingWestService.pageYnamic(partyBuildingComPbDynVO); |
| | | } |
| | | /** |
| | | * 首页二级页面-便民商家 |
New file |
| | |
| | | package com.panzhihua.community_backstage.api; |
| | | |
| | | import com.panzhihua.common.model.dtos.community.ComActProceedingsDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComActProceedingsVO; |
| | | import com.panzhihua.common.service.community.CommunityService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | @RestController |
| | | @RequestMapping("/proceedings") |
| | | @Api(tags = "议事委员会") |
| | | public class ComActPorceedingsApi { |
| | | |
| | | @Resource |
| | | private CommunityService communityService; |
| | | |
| | | @ApiOperation(value = "分页查询议事委员会列表",response = ComActProceedingsVO.class) |
| | | public R list(@RequestParam(value = "page",required = false) Integer page, |
| | | @RequestParam(value = "size",required = false) Integer size, |
| | | @RequestParam(value = "keyWord",required = false) String keyWord){ |
| | | return communityService.proceedingsList(page, size, keyWord); |
| | | } |
| | | |
| | | @ApiOperation("新增或修改议事委员会") |
| | | public R addOrUpdate(@RequestBody ComActProceedingsDTO comActProceedingsDTO){ |
| | | return communityService.addOrUpdateProceedings(comActProceedingsDTO); |
| | | } |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.api; |
| | | |
| | | import com.panzhihua.common.model.dtos.community.ComActProceedingsDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.service_community.service.ComActProceedingsService; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | @RestController |
| | | @RequestMapping("/proceedings") |
| | | public class ComActProceedingsApi { |
| | | @Resource |
| | | private ComActProceedingsService comActProceedingsService; |
| | | |
| | | /** |
| | | * description 分页查询议事委员会列表 |
| | | * |
| | | * @param keyWord 搜索关键字 |
| | | * @param page 页数 |
| | | * @param size 每页大小 |
| | | * @return R 查询结果对象 |
| | | * @author zts |
| | | * @date 2022-11-02 |
| | | */ |
| | | @GetMapping("/list") |
| | | public R list(@RequestParam(value = "page",required = false) Integer page, |
| | | @RequestParam(value = "size",required = false) Integer size, |
| | | @RequestParam(value = "keyWord",required = false) String keyWord){ |
| | | return comActProceedingsService.pageProceedings(page,size,keyWord); |
| | | } |
| | | |
| | | /** |
| | | * 修改或新增议事委员会 |
| | | * @param comActProceedingsDTO 对象 |
| | | * @return R 处理结果 |
| | | * @author zts |
| | | * @date 2022-11-02 |
| | | * */ |
| | | @PostMapping |
| | | public R addOrUpdate(@RequestBody ComActProceedingsDTO comActProceedingsDTO){ |
| | | return comActProceedingsService.addOrUpdate(comActProceedingsDTO); |
| | | } |
| | | |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.service_community.entity.ComActProceedings; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface ComActProceedingsDao extends BaseMapper<ComActProceedings> { |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(ComActProceedings record); |
| | | |
| | | int insertSelective(ComActProceedings record); |
| | | |
| | | ComActProceedings selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(ComActProceedings record); |
| | | |
| | | int updateByPrimaryKey(ComActProceedings record); |
| | | |
| | | /** |
| | | * 分页查询议事委员会 |
| | | * @param keyWord 搜索关键字 |
| | | * @return 处理结果 |
| | | * */ |
| | | List<ComActProceedings> pageProceedings(Page page, @Param("keyWord") String keyWord); |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.entity; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * com_act_proceedings |
| | | * @author zts |
| | | */ |
| | | @Data |
| | | public class ComActProceedings implements Serializable { |
| | | /** |
| | | * 主键id |
| | | */ |
| | | private Long id; |
| | | |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | private String name; |
| | | |
| | | /** |
| | | * 所属单位名 |
| | | */ |
| | | private String unitName; |
| | | |
| | | /** |
| | | * 所属单位id |
| | | */ |
| | | private Long unitId; |
| | | |
| | | /** |
| | | * 简介 |
| | | */ |
| | | private String introduce; |
| | | |
| | | /** |
| | | * 是否删除0否1是 |
| | | */ |
| | | private Boolean delFlag; |
| | | |
| | | /** |
| | | * 状态0可用1禁用 |
| | | */ |
| | | private Boolean status; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * 修改人 |
| | | */ |
| | | private Date updateBy; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | } |
| | |
| | | private Integer readNum; |
| | | |
| | | private Date releaseTime; |
| | | /** |
| | | * 广告是否置顶 |
| | | * */ |
| | | private Integer onTop; |
| | | |
| | | /** |
| | | * 图片链接 |
| | | * */ |
| | | private String imageUrl; |
| | | |
| | | } |
New file |
| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.dtos.community.ComActProceedingsDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.service_community.entity.ComActAcidDangerMember; |
| | | import com.panzhihua.service_community.entity.ComActProceedings; |
| | | |
| | | public interface ComActProceedingsService extends IService<ComActProceedings> { |
| | | |
| | | /** |
| | | * 分页查询议事委员会 |
| | | * @param keyWord 搜索关键字 |
| | | * @return 处理结果 |
| | | * */ |
| | | R pageProceedings(Integer page, Integer size, String keyWord); |
| | | |
| | | /** |
| | | * 新增或修改议事委员会 |
| | | * @param comActProceedingsDTO |
| | | * @return 处理结果 |
| | | * */ |
| | | R addOrUpdate(ComActProceedingsDTO comActProceedingsDTO); |
| | | } |
| | |
| | | } |
| | | comActDynDAO.updateById(comActDynDO); |
| | | } |
| | | return R.ok(comActDynVO); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
New file |
| | |
| | | package com.panzhihua.service_community.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.panzhihua.common.model.dtos.community.ComActProceedingsDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.community.ComActProceedingsVO; |
| | | import com.panzhihua.common.utlis.CopyUtil; |
| | | import com.panzhihua.common.utlis.Snowflake; |
| | | import com.panzhihua.service_community.dao.ComActProceedingsDao; |
| | | import com.panzhihua.service_community.entity.ComActProceedings; |
| | | import com.panzhihua.service_community.service.ComActProceedingsService; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import static java.util.Objects.isNull; |
| | | |
| | | @Service |
| | | public class ComActProceedingsServiceImpl extends ServiceImpl<ComActProceedingsDao, ComActProceedings> implements ComActProceedingsService { |
| | | |
| | | @Resource |
| | | private ComActProceedingsDao comActProceedingsDao; |
| | | /** |
| | | * 分页查询议事委员会 |
| | | * @param keyWord 搜索关键字 |
| | | * @return 处理结果 |
| | | * */ |
| | | @Override |
| | | public R pageProceedings(Integer page, Integer size, String keyWord) { |
| | | return R.ok(CopyUtil.beanCopyList(comActProceedingsDao.pageProceedings(new Page(page,size),keyWord), ComActProceedingsVO.class)); |
| | | } |
| | | |
| | | /** |
| | | * 新增或修改议事委员会 |
| | | * @param comActProceedingsDTO |
| | | * @return 处理结果 |
| | | * */ |
| | | @Override |
| | | public R addOrUpdate(ComActProceedingsDTO comActProceedingsDTO) { |
| | | if(isNull(comActProceedingsDTO.getId())){ |
| | | //新增 |
| | | ComActProceedings comActProceedings=new ComActProceedings(); |
| | | comActProceedings.setId(Snowflake.getId()); |
| | | comActProceedings.setCreateTime(new Date()); |
| | | int i = comActProceedingsDao.insertSelective(comActProceedings); |
| | | if (i>0){ |
| | | return R.ok(); |
| | | } |
| | | }else{ |
| | | //修改 |
| | | ComActProceedings comActProceedings=new ComActProceedings(); |
| | | BeanUtils.copyProperties(comActProceedingsDTO, comActProceedings); |
| | | comActProceedings.setUpdateTime(new Date()); |
| | | int i = comActProceedingsDao.updateById(comActProceedings); |
| | | if (i>0){ |
| | | return R.ok(); |
| | | } |
| | | } |
| | | return R.fail("操作失败"); |
| | | } |
| | | } |
| | |
| | | e.printStackTrace(); |
| | | } |
| | | //生成后台账号 |
| | | //如果是普达社区专家则不生成后台账号 |
| | | if (nonNull(expert.getCommunityId()) && !expert.getCommunityId().equals(10172)){ |
| | | return R.ok(); |
| | | } |
| | | AdministratorsUserVO user=new AdministratorsUserVO(); |
| | | user.setUserId(Snowflake.getId()); |
| | | user.setAccount(comSanshuoExpertDTO.getAccount()); |
| | |
| | | user.setType(11); |
| | | user.setImageUrl(comSanshuoExpertDTO.getAvatar()); |
| | | user.setPhone(comSanshuoExpertDTO.getPhone()); |
| | | return R.ok(userService.sanShuoAddUser(user)); |
| | | userService.sanShuoAddUser(user); |
| | | return R.ok(); |
| | | } |
| | | }else { |
| | | ComSanshuoExpert expert=new ComSanshuoExpert(); |
New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.panzhihua.service_community.dao.ComActProceedingsDao"> |
| | | <resultMap id="BaseResultMap" type="com.panzhihua.service_community.entity.ComActProceedings"> |
| | | <id column="id" jdbcType="BIGINT" property="id" /> |
| | | <result column="name" jdbcType="VARCHAR" property="name" /> |
| | | <result column="unit_name" jdbcType="VARCHAR" property="unitName" /> |
| | | <result column="unit_id" jdbcType="BIGINT" property="unitId" /> |
| | | <result column="introduce" jdbcType="VARCHAR" property="introduce" /> |
| | | <result column="del_flag" jdbcType="BIT" property="delFlag" /> |
| | | <result column="status" jdbcType="BIT" property="status" /> |
| | | <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> |
| | | <result column="create_by" jdbcType="VARCHAR" property="createBy" /> |
| | | <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" /> |
| | | <result column="update_by" jdbcType="TIMESTAMP" property="updateBy" /> |
| | | </resultMap> |
| | | <sql id="Base_Column_List"> |
| | | id, `name`, unit_name, unit_id, introduce, del_flag, `status`, create_time, create_by, |
| | | update_time, update_by |
| | | </sql> |
| | | <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
| | | select |
| | | <include refid="Base_Column_List" /> |
| | | from com_act_proceedings |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </select> |
| | | <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
| | | delete from com_act_proceedings |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </delete> |
| | | <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.panzhihua.service_community.entity.ComActProceedings" useGeneratedKeys="true"> |
| | | insert into com_act_proceedings (id,`name`, unit_name, unit_id, |
| | | introduce, del_flag, `status`, |
| | | create_time, create_by, update_time, |
| | | update_by) |
| | | values (#{name,jdbcType=VARCHAR}, #{unitName,jdbcType=VARCHAR}, #{unitId,jdbcType=BIGINT}, |
| | | #{introduce,jdbcType=VARCHAR}, #{delFlag,jdbcType=BIT}, #{status,jdbcType=BIT}, |
| | | #{createTime,jdbcType=TIMESTAMP}, #{createBy,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP}, |
| | | #{updateBy,jdbcType=TIMESTAMP}) |
| | | </insert> |
| | | <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.panzhihua.service_community.entity.ComActProceedings" useGeneratedKeys="true"> |
| | | insert into com_act_proceedings |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="id != null"> |
| | | `id`, |
| | | </if> |
| | | <if test="name != null"> |
| | | `name`, |
| | | </if> |
| | | <if test="unitName != null"> |
| | | unit_name, |
| | | </if> |
| | | <if test="unitId != null"> |
| | | unit_id, |
| | | </if> |
| | | <if test="introduce != null"> |
| | | introduce, |
| | | </if> |
| | | <if test="delFlag != null"> |
| | | del_flag, |
| | | </if> |
| | | <if test="status != null"> |
| | | `status`, |
| | | </if> |
| | | <if test="createTime != null"> |
| | | create_time, |
| | | </if> |
| | | <if test="createBy != null"> |
| | | create_by, |
| | | </if> |
| | | <if test="updateTime != null"> |
| | | update_time, |
| | | </if> |
| | | <if test="updateBy != null"> |
| | | update_by, |
| | | </if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null"> |
| | | #{id,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="name != null"> |
| | | #{name,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="unitName != null"> |
| | | #{unitName,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="unitId != null"> |
| | | #{unitId,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="introduce != null"> |
| | | #{introduce,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="delFlag != null"> |
| | | #{delFlag,jdbcType=BIT}, |
| | | </if> |
| | | <if test="status != null"> |
| | | #{status,jdbcType=BIT}, |
| | | </if> |
| | | <if test="createTime != null"> |
| | | #{createTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="createBy != null"> |
| | | #{createBy,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="updateTime != null"> |
| | | #{updateTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="updateBy != null"> |
| | | #{updateBy,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | </trim> |
| | | </insert> |
| | | <update id="updateByPrimaryKeySelective" parameterType="com.panzhihua.service_community.entity.ComActProceedings"> |
| | | update com_act_proceedings |
| | | <set> |
| | | <if test="name != null"> |
| | | `name` = #{name,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="unitName != null"> |
| | | unit_name = #{unitName,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="unitId != null"> |
| | | unit_id = #{unitId,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="introduce != null"> |
| | | introduce = #{introduce,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="delFlag != null"> |
| | | del_flag = #{delFlag,jdbcType=BIT}, |
| | | </if> |
| | | <if test="status != null"> |
| | | `status` = #{status,jdbcType=BIT}, |
| | | </if> |
| | | <if test="createTime != null"> |
| | | create_time = #{createTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="createBy != null"> |
| | | create_by = #{createBy,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="updateTime != null"> |
| | | update_time = #{updateTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="updateBy != null"> |
| | | update_by = #{updateBy,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | </set> |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | | <update id="updateByPrimaryKey" parameterType="com.panzhihua.service_community.entity.ComActProceedings"> |
| | | update com_act_proceedings |
| | | set `name` = #{name,jdbcType=VARCHAR}, |
| | | unit_name = #{unitName,jdbcType=VARCHAR}, |
| | | unit_id = #{unitId,jdbcType=BIGINT}, |
| | | introduce = #{introduce,jdbcType=VARCHAR}, |
| | | del_flag = #{delFlag,jdbcType=BIT}, |
| | | `status` = #{status,jdbcType=BIT}, |
| | | create_time = #{createTime,jdbcType=TIMESTAMP}, |
| | | create_by = #{createBy,jdbcType=VARCHAR}, |
| | | update_time = #{updateTime,jdbcType=TIMESTAMP}, |
| | | update_by = #{updateBy,jdbcType=TIMESTAMP} |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | | <select id="pageProceedings" resultType="com.panzhihua.service_community.entity.ComActProceedings"> |
| | | select * from com_act_proceedings where del_flag=0 |
| | | <if test="keyWord != null and keyWord != ''"> |
| | | AND name like concat("%",#{keyWord},"%") |
| | | </if> |
| | | </select> |
| | | </mapper> |
| | |
| | | |
| | | @Select("SELECT caa.community_id FROM com_act caa WHERE caa.`name` = ( select ca.`name` FROM com_act ca WHERE ca.community_id =#{id})") |
| | | List<Long> selectIds(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 根据区域名称查询社区id |
| | | * @param area |
| | | * @return |
| | | */ |
| | | @Select("select distinct community_id from com_area_town_community where area=#{area}") |
| | | List<Long> selectDistinctCommunityId(@Param("area") String area); |
| | | |
| | | } |
| | |
| | | communityIds.add(communityId); |
| | | } |
| | | partyBuildingComPbDynVO.setCommunityIds(communityIds); |
| | | }else { |
| | | //西区大屏 |
| | | if (CollUtil.isEmpty(partyBuildingComPbDynVO.getCommunityIds()) || "wx0cef797390444b75".equals(partyBuildingComPbDynVO.getAppId())){ |
| | | List<Long> selectDistinctCommunityId = comPbMemberDAO.selectDistinctCommunityId("西区"); |
| | | partyBuildingComPbDynVO.setCommunityIds(selectDistinctCommunityId); |
| | | } |
| | | } |
| | | IPage<PartyBuildingComPbDynVO> iPage = comPbDynDAO.pageYnamic(page, partyBuildingComPbDynVO); |
| | | List<PartyBuildingComPbDynVO> records = iPage.getRecords(); |
| | |
| | | package com.panzhihua.service_property.service.impl; |
| | | |
| | | import cn.hutool.core.util.DesensitizedUtil; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | |
| | | |
| | | @Override |
| | | public R selectDetail(Long id) { |
| | | return R.ok(comPropertyRepairDao.selectDetail(id)); |
| | | ComPropertyRepairVO vo = comPropertyRepairDao.selectDetail(id); |
| | | vo.setRepairPhone(DesensitizedUtil.mobilePhone(vo.getRepairPhone())); |
| | | vo.setRepairName(DesensitizedUtil.chineseName(vo.getRepairName())); |
| | | return R.ok(vo); |
| | | } |
| | | } |
| | |
| | | return userService.addComPbCheckUser(comPbCheckUserDTO); |
| | | } |
| | | |
| | | @PostMapping("/feedBackReply") |
| | | public R feedBackReply(@RequestBody SysUserFeedbackVO sysUserFeedbackVO){ |
| | | return null; |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | |
| | | DataKanbanDTO selectCommunityAddUserOrder(@Param("areaCode") String areaCode, @Param("date1") Date date1); |
| | | |
| | | List<UsersStatisticsDTO> selectDailyAdd(@Param("createAt") String createAt, @Param("appId") String appId); |
| | | |
| | | List<UsersStatisticsDTO> selectActive(@Param("lastLoginTime") String lastLoginTime, @Param("appId") String appId); |
| | | |
| | | IndexDataVO indexDataCommunityBackstage(Long communityId); |
| | | |
| | |
| | | } |
| | | |
| | | // 获取最近二十天数据 |
| | | List<Date> serverndays = com.panzhihua.common.utlis.DateUtils.getOldDays(); |
| | | serverndays.forEach(date -> { |
| | | // 查询社区活动数量 |
| | | DataKanbanDTO dataKanbanDTO = userDao.selectCommunityAddUserOrder(dataKanBansDto.getAppId(), date); |
| | | List<Date> activeDate = getTwentyDays(); |
| | | |
| | | String twentyDay = com.panzhihua.common.utlis.DateUtils.getTwentyDay(); |
| | | //获取最近活跃人数 |
| | | List<UsersStatisticsDTO> actives = userDao.selectActive(twentyDay, dataKanBansDto.getAppId()); |
| | | //获取最近注册人数 |
| | | List<UsersStatisticsDTO> dailyAdds = userDao.selectDailyAdd(twentyDay, dataKanBansDto.getAppId()); |
| | | |
| | | Map<String, String> activeMap = actives.stream().collect(Collectors.toMap(UsersStatisticsDTO::getSpecificDate, UsersStatisticsDTO::getTotal)); |
| | | Map<String, String> dailyAddMap = dailyAdds.stream().collect(Collectors.toMap(UsersStatisticsDTO::getSpecificDate, UsersStatisticsDTO::getTotal)); |
| | | |
| | | |
| | | for (Date date : activeDate) { |
| | | String dateStr = DateUtil.format(date, "yyyy-MM-dd"); |
| | | communityActiveUserX.add(DateFormatUtils.format(date, "MM-dd")); |
| | | communityActiveUserY.add(dataKanbanDTO.getNum()); |
| | | communityActiveUserZ.add(dataKanbanDTO.getDayNum()); |
| | | }); |
| | | communityActiveUserY.add(dailyAddMap.containsKey(dateStr) ? Integer.parseInt(dailyAddMap.get(dateStr)) : 0); |
| | | communityActiveUserZ.add(activeMap.containsKey(dateStr) ? Integer.parseInt(activeMap.get(dateStr)) : 0); |
| | | } |
| | | indexDataKanbanVO.setCommunityActiveUserX(communityActiveUserX); |
| | | indexDataKanbanVO.setCommunityAddUserY(communityActiveUserY); |
| | | indexDataKanbanVO.setCommunityActiveUserY(communityActiveUserZ); |
| | |
| | | and su.type = 1 and su.app_id = #{areaCode} |
| | | </select> |
| | | |
| | | <select id="selectDailyAdd" resultType="com.panzhihua.service_user.model.dtos.UsersStatisticsDTO"> |
| | | SELECT DATE_FORMAT( u.create_at, '%Y-%m-%d' ) as specificDate,count( u.user_id ) total FROM sys_user u |
| | | LEFT JOIN com_act t1 ON u.community_id = t1.community_id WHERE u.type = 1 AND u.app_id = #{appId} AND u.create_at > #{createAt} GROUP BY specificDate; |
| | | </select> |
| | | |
| | | <select id="selectActive" resultType="com.panzhihua.service_user.model.dtos.UsersStatisticsDTO"> |
| | | SELECT DATE_FORMAT( u.last_login_time, '%Y-%m-%d' ) as specificDate,count( u.user_id ) total FROM sys_user u |
| | | LEFT JOIN com_act t1 ON u.community_id = t1.community_id WHERE u.type = 1 AND u.app_id = #{appId} AND u.last_login_time > #{lastLoginTime} GROUP BY specificDate; |
| | | </select> |
| | | |
| | | <update id="gridMemberEditStatus"> |
| | | update sys_user set status = #{gridMemberEditDTO.status} where user_id in |
| | | <foreach item="item" collection="gridMemberEditDTO.ids" separator="," open="(" close=")" index=""> |
| | |
| | | noLoginUrl.add("/api/applets/renting/houses/houseList"); |
| | | noLoginUrl.add("/api/applets/renting/houses/getConfig"); |
| | | noLoginUrl.add("/api/applets/comActRaffle/queryAll"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/comprehensive/street/list"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/comprehensive/population"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/getWestScreenStatics"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/comprehensive/governance"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/comprehensive/partydyn"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/comprehensive/pagedynamic"); |
| | | noLoginUrl.add("/api/communitybackstage/screen/get/community/password"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/comprehensive/street/list"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/comprehensive/population"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/getWestScreenStatics"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/comprehensive/governance"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/comprehensive/partydyn"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/comprehensive/pagedynamic"); |
| | | noLoginUrl.add("/api/huacheng-communitybackstage/screen/get/community/password"); |
| | | noLoginUrl.add("/api/shopbackstage/microcommercialstreet/verifyCode"); |
| | | noLoginUrl.add("/api/shopbackstage/mcsOrder/wxNotify"); |
| | | noLoginUrl.add("/api/shopbackstage/microcommercialstreet/bindPhone"); |