wjc
2025-04-29 d0e49b8c045e09e96cc875b27033b4bfcf07438f
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
package com.hdl.photovoltaic.enums;
 
import static java.lang.annotation.RetentionPolicy.SOURCE;
 
import androidx.annotation.StringDef;
 
 
import java.lang.annotation.Retention;
 
@Retention(SOURCE)
@StringDef({MessageStateType.untreated, MessageStateType.processed, MessageStateType.all})
public @interface MessageStateType {
    /**
     * 未处理
     */
    String untreated = "UNTREATED";
    /**
     * 已处理
     */
    String processed = "PROCESSED";
    /**
     * 全部
     */
    String all = "ALL";
 
 
}