| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package jnpf.model;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.io.Serializable;
- @Data
- @Schema(description = "第三方同步配置属性")
- public class SocialsSysConfig implements Serializable {
- //第三方同步属性-和消息推送
- @Schema(description = "企业微信-企业id")
- private String qyhCorpId;
- @Schema(description = "企业微信-应用id")
- private String qyhAgentId;
- @Schema(description = "企业微信-应用秘钥")
- private String qyhAgentSecret;
- @Schema(description = "企业微信-同步秘钥")
- private String qyhCorpSecret;
- @Schema(description = "企业微信-是否同步组织")
- private Integer qyhIsSynOrg;
- @Schema(description = "企业微信-是否同步用户")
- private Integer qyhIsSynUser;
- @Schema(description = "企业微信-同步最高级组织")
- private String qyhDepartment;
- @Schema(description = "钉钉-应用id")
- private String dingAgentId;
- @Schema(description = "钉钉-应用key")
- private String dingSynAppKey;
- @Schema(description = "钉钉-应用秘钥")
- private String dingSynAppSecret;
- @Schema(description = "钉钉-是否同步组织")
- private Integer dingSynIsSynOrg;
- @Schema(description = "钉钉-是否同步用户")
- private Integer dingSynIsSynUser;
- @Schema(description = "钉钉-同步最高级组织")
- private String dingDepartment;
- }
|