Pu Zhibing
2025-04-22 d138293736414a314467a2641e6116ff263ead48
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
package com.ruoyi.bussiness.enums;
 
 
/**
 * 消息类型
 */
public enum MessageTypeEnum {
 
    PLACEMENT_APPLY("1","您有【{}】条【自主购房安置申请批次】等待审批"),
    PLACEMENT_BATCH("2","您有【{}】条【安置批次】等待审批"),
    PLACEMENT_PAY("3","本月应支付补偿款合计为【{}】"),
    PLACEMENT_FIRST_PAY("4","您有【{}】户自主购房安置人员需要支付首付款"),
    PLACEMENT_MONTH_PAY("5","您有一笔季度款即将支付,支付金额为【{}万元】")
 
 
    ;
 
 
    private final String code;
    private final String message;
 
    MessageTypeEnum(String code, String message) {
        this.code = code;
        this.message = message;
    }
 
    public String getCode() {
        return code;
    }
 
    public String getMessage() {
        return message;
    }
 
}