Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Dec 19, 2025

微信小程序新增了用工关系能力,需要支持解绑用工关系和推送用工消息两个服务端API。

实现内容

新增Bean类

  • WxMaUnbindEmployeeRequest - 解绑请求(openid + corpId)
  • WxMaSendEmployeeMsgRequest - 推送消息请求(openid + corpId + msg)

新增服务

  • WxMaEmployeeRelationService - 用工关系服务接口
    • unbindEmployee() - 解绑用工关系
    • sendEmployeeMsg() - 推送用工消息
  • WxMaEmployeeRelationServiceImpl - 服务实现

API集成

  • WxMaApiUrlConstants.Employee - 新增API URL常量接口
  • WxMaService.getEmployeeRelationService() - 服务获取方法
  • BaseWxMaServiceImpl - 注册服务实例

使用示例

WxMaEmployeeRelationService employeeService = wxMaService.getEmployeeRelationService();

// 解绑用工关系
employeeService.unbindEmployee(
  WxMaUnbindEmployeeRequest.newBuilder()
    .openid("oABCD1234")
    .corpId("corp_123")
    .build()
);

// 推送用工消息
employeeService.sendEmployeeMsg(
  WxMaSendEmployeeMsgRequest.newBuilder()
    .openid("oABCD1234")
    .corpId("corp_123")
    .msg("您的工作任务已更新")
    .build()
);

参考文档

:绑定和检查用工关系为小程序端API(wx.bindEmployeeRelation/wx.checkEmployeeRelation),无需服务端实现。

Original prompt

This section details on the original issue you should resolve

<issue_title>【小程序】用工关系</issue_title>
<issue_description># 提问前,请确保阅读过项目首页说明以及wiki开发文档相关内容,完成内容后,请务必移除包括本句在内的无用内容,以免影响他人阅读,否则直接关闭,谢谢合作~

简要描述

小程序新增了用工关系能力,不知道是否已经在开发计划中

官方文档地址

请提供所需功能对应的微信官方文档地址以便进行确认。
用工关系简介
绑定用工关系
解绑用工关系
检查用工关系
推送用工消息
</issue_description>

Comments on the Issue (you are @copilot in this section)

Custom agent used: 全部用中文
需要用中文,包括PR标题和分析总结过程


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: binarywang <1343140+binarywang@users.noreply.github.com>
Copilot AI changed the title [WIP] Add labor relation capability to mini program feat: 实现小程序用工关系API支持 Dec 19, 2025
Copilot AI requested a review from binarywang December 19, 2025 17:31
@binarywang binarywang marked this pull request as ready for review December 20, 2025 12:07
Copilot AI review requested due to automatic review settings December 20, 2025 12:07
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

本PR为微信小程序SDK新增了用工关系API支持,实现了解绑用工关系和推送用工消息两个服务端接口。

  • 新增两个请求Bean类(WxMaUnbindEmployeeRequestWxMaSendEmployeeMsgRequest)用于封装API请求参数
  • 创建WxMaEmployeeRelationService接口及其实现类,提供用工关系相关操作
  • 在主服务类中注册新服务,使开发者可以通过getEmployeeRelationService()获取服务实例

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.

Show a summary per file
File Description
WxMaApiUrlConstants.java 新增Employee接口常量,定义解绑和推送消息的API URL
WxMaUnbindEmployeeRequest.java 解绑用工关系请求实体,包含openid和corpId字段
WxMaSendEmployeeMsgRequest.java 推送用工消息请求实体,包含openid、corpId和msg字段
WxMaEmployeeRelationServiceImpl.java 用工关系服务实现类,调用微信API完成解绑和推送操作
BaseWxMaServiceImpl.java 在主服务类中实例化并注册用工关系服务
WxMaService.java 在服务接口中新增getEmployeeRelationService()方法
WxMaEmployeeRelationService.java 用工关系服务接口,定义unbindEmployee和sendEmployeeMsg方法

@binarywang binarywang merged commit 621b8dc into develop Dec 21, 2025
7 checks passed
@binarywang binarywang deleted the copilot/add-labor-relation-feature branch December 21, 2025 09:31
Copilot AI added a commit that referenced this pull request Dec 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

【小程序】用工关系

2 participants