| | |
| | | import com.panzhihua.common.model.dtos.PageDTO; |
| | | import com.panzhihua.common.model.dtos.community.ExportUserDTO; |
| | | import com.panzhihua.common.model.dtos.community.NoticeReadDTO; |
| | | import com.panzhihua.common.model.dtos.grid.*; |
| | | import com.panzhihua.common.model.dtos.user.PageFeedBackDTO; |
| | | import com.panzhihua.common.model.dtos.user.PageUserAppletsBackstageDTO; |
| | | import com.panzhihua.common.model.dtos.user.SysUserEditTipsDTO; |
| | |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.shop.ShopStoreVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | * 用户协议 |
| | | * @return 协议集合 |
| | | */ |
| | | R listAgreement(); |
| | | R listAgreement(Long communityId); |
| | | /** |
| | | * 编辑用户协议 |
| | | * @param sysUserAgreementVO 编辑内容 |
| | |
| | | * @return 修改结果 |
| | | */ |
| | | R updateUserPassByApp(EditUserInfoPassAppDTO userInfoAppDTO); |
| | | |
| | | /** |
| | | * 添加网格员 |
| | | * @param eventGridMemberAddDTO 请求参数 |
| | | * @return 结果 |
| | | */ |
| | | R addGridUser(EventGridMemberAddDTO eventGridMemberAddDTO); |
| | | |
| | | /** |
| | | * 网格员管理 |
| | | * @param memberRelationDTO 请求参数 |
| | | * @return 网格员列表 |
| | | */ |
| | | R getGridMemberList(PageEventGridMemberRelationDTO memberRelationDTO); |
| | | |
| | | /** |
| | | * 网格员编辑 |
| | | * @param gridMemberDTO 请求参数 |
| | | * @return 编辑结果 |
| | | */ |
| | | R editGridUser(EventGridMemberEditAdminDTO gridMemberDTO); |
| | | |
| | | /** |
| | | * 网格员重置密码 |
| | | * @param gridMemberDTO 请求参数 |
| | | * @return 重置结果 |
| | | */ |
| | | R passResetUser(EventGridMemberPassResetDTO gridMemberDTO); |
| | | |
| | | R deleteMembers(List<Long> Ids); |
| | | |
| | | R gridMemberEditStatus(EventGridMemberEditStatusDTO gridMemberEditDTO); |
| | | |
| | | R noTips(Long userId); |
| | | |
| | | /** |
| | | * 查询社区的收益说明 |
| | | * @param communityId 社区id |
| | | * @return 收益说明 |
| | | */ |
| | | R listAgreements(Long communityId); |
| | | |
| | | R getGridIsOk(Long userId); |
| | | } |