| | |
| | | import com.panzhihua.common.model.dtos.community.ExportUserDTO; |
| | | import com.panzhihua.common.model.dtos.community.NoticeReadDTO; |
| | | import com.panzhihua.common.model.dtos.grid.EventGridMemberAddDTO; |
| | | import com.panzhihua.common.model.dtos.grid.EventGridMemberEditStatusDTO; |
| | | import com.panzhihua.common.model.dtos.grid.EventGridMemberPassResetDTO; |
| | | import com.panzhihua.common.model.dtos.grid.PageEventGridMemberRelationDTO; |
| | | 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 addGridUser(EventGridMemberAddDTO eventGridMemberAddDTO); |
| | | |
| | | /** |
| | | * 网格员管理 |
| | | * @param memberRelationDTO 请求参数 |
| | | * @return 网格员列表 |
| | | */ |
| | | R getGridMemberList(PageEventGridMemberRelationDTO memberRelationDTO); |
| | | |
| | | /** |
| | | * 网格员编辑 |
| | | * @param gridMemberDTO 请求参数 |
| | | * @return 编辑结果 |
| | | */ |
| | | R editGridUser(EventGridMemberAddDTO gridMemberDTO); |
| | | |
| | | /** |
| | | * 网格员重置密码 |
| | | * @param gridMemberDTO 请求参数 |
| | | * @return 重置结果 |
| | | */ |
| | | R passResetUser(EventGridMemberPassResetDTO gridMemberDTO); |
| | | |
| | | R deleteMembers(List<Long> Ids); |
| | | |
| | | R gridMemberEditStatus(EventGridMemberEditStatusDTO gridMemberEditDTO); |
| | | } |