zss
2 天以前 b9a985fea44086bb07069b1913835bbfaf0ed44a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.ruoyi.project.system.domain;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
/**
 * <p>
 * 个推 (Unipush v2) 消息推送配置类
 * </p>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/2/9
 */
@Data
@Component
@ConfigurationProperties(prefix = "ruoyi.getui")
public class GetuiConfig {
 
    /**
     * AppID
     */
    private String appId;
 
    /**
     * AppKey
     */
    private String appKey;
 
    /**
     * MasterSecret
     */
    private String masterSecret;
 
    /**
     * 个推 RESTful API 域名地址
     */
    private String domain;
 
    /**
     * 离线推送 Intent 目标组件名
     * 格式: 包名/入口Activity名
     */
    private String intentComponent;
}