mirror of
				https://gitee.com/binary/weixin-java-tools.git
				synced 2025-11-04 06:07:59 +08:00 
			
		
		
		
	🎨 修改类可见范围,并优化部分文档
This commit is contained in:
		@ -49,7 +49,7 @@ public interface WxCpChatService {
 | 
			
		||||
   * 应用支持推送文本、图片、视频、文件、图文等类型.
 | 
			
		||||
   * 请求方式: POST(HTTPS)
 | 
			
		||||
   * 请求地址: https://qyapi.weixin.qq.com/cgi-bin/appchat/send?access_token=ACCESS_TOKEN
 | 
			
		||||
   * 文档地址:https://work.weixin.qq.com/api/doc#90000/90135/90248
 | 
			
		||||
   * 文档地址:<a href="https://work.weixin.qq.com/api/doc#90000/90135/90248">...</a>
 | 
			
		||||
   *
 | 
			
		||||
   * @param message 要发送的消息内容对象
 | 
			
		||||
   * @throws WxErrorException 异常
 | 
			
		||||
 | 
			
		||||
@ -19,7 +19,7 @@ public interface WxCpDepartmentService {
 | 
			
		||||
   * <pre>
 | 
			
		||||
   * 部门管理接口 - 创建部门.
 | 
			
		||||
   * 最多支持创建500个部门
 | 
			
		||||
   * 详情请见: https://work.weixin.qq.com/api/doc#90000/90135/90205
 | 
			
		||||
   * 详情请见: <a href="https://work.weixin.qq.com/api/doc#90000/90135/90205">...</a>
 | 
			
		||||
   * </pre>
 | 
			
		||||
   *
 | 
			
		||||
   * @param depart 部门
 | 
			
		||||
@ -31,7 +31,7 @@ public interface WxCpDepartmentService {
 | 
			
		||||
  /**
 | 
			
		||||
   * <pre>
 | 
			
		||||
   * 部门管理接口 - 获取单个部门详情.
 | 
			
		||||
   * 详情请见: https://developer.work.weixin.qq.com/document/path/95351
 | 
			
		||||
   * 详情请见: <a href="https://developer.work.weixin.qq.com/document/path/95351">...</a>
 | 
			
		||||
   * </pre>
 | 
			
		||||
   *
 | 
			
		||||
   * @param id 部门id
 | 
			
		||||
@ -43,7 +43,7 @@ public interface WxCpDepartmentService {
 | 
			
		||||
  /**
 | 
			
		||||
   * <pre>
 | 
			
		||||
   * 部门管理接口 - 获取部门列表.
 | 
			
		||||
   * 详情请见: https://work.weixin.qq.com/api/doc#90000/90135/90208
 | 
			
		||||
   * 详情请见: <a href="https://work.weixin.qq.com/api/doc#90000/90135/90208">...</a>
 | 
			
		||||
   * </pre>
 | 
			
		||||
   *
 | 
			
		||||
   * @param id 部门id。获取指定部门及其下的子部门。非必需,可为null
 | 
			
		||||
@ -55,7 +55,7 @@ public interface WxCpDepartmentService {
 | 
			
		||||
  /**
 | 
			
		||||
   * <pre>
 | 
			
		||||
   * 部门管理接口 - 获取子部门ID列表.
 | 
			
		||||
   * 详情请见: https://developer.work.weixin.qq.com/document/path/95350
 | 
			
		||||
   * 详情请见: <a href="https://developer.work.weixin.qq.com/document/path/95350">...</a>
 | 
			
		||||
   * </pre>
 | 
			
		||||
   *
 | 
			
		||||
   * @param id 部门id。获取指定部门及其下的子部门(以及子部门的子部门等等,递归)。 如果不填,默认获取全量组织架构
 | 
			
		||||
@ -67,7 +67,7 @@ public interface WxCpDepartmentService {
 | 
			
		||||
  /**
 | 
			
		||||
   * <pre>
 | 
			
		||||
   * 部门管理接口 - 更新部门.
 | 
			
		||||
   * 详情请见: https://work.weixin.qq.com/api/doc#90000/90135/90206
 | 
			
		||||
   * 详情请见: <a href="https://work.weixin.qq.com/api/doc#90000/90135/90206">...</a>
 | 
			
		||||
   * 如果id为0(未部门),1(黑名单),2(星标组),或者不存在的id,微信会返回系统繁忙的错误
 | 
			
		||||
   * </pre>
 | 
			
		||||
   *
 | 
			
		||||
@ -79,7 +79,7 @@ public interface WxCpDepartmentService {
 | 
			
		||||
  /**
 | 
			
		||||
   * <pre>
 | 
			
		||||
   * 部门管理接口 - 删除部门.
 | 
			
		||||
   * 详情请见: https://work.weixin.qq.com/api/doc#90000/90135/90207
 | 
			
		||||
   * 详情请见: <a href="https://work.weixin.qq.com/api/doc#90000/90135/90207">...</a>
 | 
			
		||||
   * 应用须拥有指定部门的管理权限
 | 
			
		||||
   * </pre>
 | 
			
		||||
   *
 | 
			
		||||
 | 
			
		||||
@ -453,7 +453,7 @@ public class WxCpXmlApprovalInfo implements Serializable {
 | 
			
		||||
 | 
			
		||||
  @Data
 | 
			
		||||
  @XStreamAlias("CommentUserInfo")
 | 
			
		||||
  private static class CommentUserInfo implements Serializable {
 | 
			
		||||
  public static class CommentUserInfo implements Serializable {
 | 
			
		||||
    private static final long serialVersionUID = 5031739716823000947L;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
 | 
			
		||||
@ -29,7 +29,7 @@ public class WxPayScoreRequest implements Serializable {
 | 
			
		||||
    return WxGsonBuilder.create().toJson(this);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
  /**`
 | 
			
		||||
   * out_order_no : 1234323JKHDFE1243252
 | 
			
		||||
   * appid : wxd678efh567hg6787
 | 
			
		||||
   * service_id : 500001
 | 
			
		||||
@ -43,6 +43,7 @@ public class WxPayScoreRequest implements Serializable {
 | 
			
		||||
   * notify_url : https://api.test.com
 | 
			
		||||
   * openid : oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
 | 
			
		||||
   * need_user_confirm : true
 | 
			
		||||
   * profitSharing :Y-是,需要分账  N-否,不分账,字母要求大写,不传默认不分账
 | 
			
		||||
   */
 | 
			
		||||
  @SerializedName("out_order_no")
 | 
			
		||||
  private String outOrderNo;
 | 
			
		||||
@ -67,7 +68,7 @@ public class WxPayScoreRequest implements Serializable {
 | 
			
		||||
  @SerializedName("need_user_confirm")
 | 
			
		||||
  private Boolean needUserConfirm;
 | 
			
		||||
  @SerializedName("profit_sharing")
 | 
			
		||||
  private Boolean profitSharing;
 | 
			
		||||
  private String profitSharing;
 | 
			
		||||
  @SerializedName("post_payments")
 | 
			
		||||
  private List<PostPayment> postPayments;
 | 
			
		||||
  @SerializedName("post_discounts")
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user