|
|
|
@ -88,11 +88,23 @@ public class MailSource { |
|
|
|
|
|
|
|
|
|
|
|
@AllArgsConstructor |
|
|
|
@AllArgsConstructor |
|
|
|
public enum Source { |
|
|
|
public enum Source { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 局长信箱
|
|
|
|
MAILBOX("mailbox", "XXWW"), |
|
|
|
MAILBOX("mailbox", "XXWW"), |
|
|
|
|
|
|
|
// 110举报投诉
|
|
|
|
REPORT_COMPLAINTS("110_report_complaints", "JBTS"), |
|
|
|
REPORT_COMPLAINTS("110_report_complaints", "JBTS"), |
|
|
|
|
|
|
|
// 12345市长热线
|
|
|
|
HOTLINE("12345_mayor's_hotline", "SZRX"), |
|
|
|
HOTLINE("12345_mayor's_hotline", "SZRX"), |
|
|
|
|
|
|
|
// 红网问政
|
|
|
|
RED_NETWORK_POLITICS("red_network_politics", "HWWZ"), |
|
|
|
RED_NETWORK_POLITICS("red_network_politics", "HWWZ"), |
|
|
|
CREATE_YOUR_OWN_LETTERS("create_your_own_letters", "ZJXJ"); |
|
|
|
// 自建信件
|
|
|
|
|
|
|
|
CREATE_YOUR_OWN_LETTERS("create_your_own_letters", "ZJXJ"), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 信访投诉
|
|
|
|
|
|
|
|
PETITION_COMPLAINTS("petition_complaints", "XXTS"), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 新闻舆情
|
|
|
|
|
|
|
|
NEWS_OPINION("news_opinion", "XXYQ"); |
|
|
|
|
|
|
|
|
|
|
|
@Getter |
|
|
|
@Getter |
|
|
|
private String value; |
|
|
|
private String value; |
|
|
|
|