| | |
| | | } |
| | | } |
| | | |
| | | public enum SMS_RECEIVE_TYPE { |
| | | IMPORT("导入接收文件"), INPUT("手动输入"), SELECT("点击选择用户列表"); |
| | | |
| | | SMS_RECEIVE_TYPE(String desc) { |
| | | this.desc = desc; |
| | | } |
| | | |
| | | private String desc; |
| | | |
| | | public String getDesc() { |
| | | return desc; |
| | | } |
| | | } |
| | | |
| | | public enum SMS_TASK_STATUS { |
| | | wait_publish("待发布"), in_execution("执行中"), complete("已完成"), failure("失败"); |
| | | |
| | | SMS_TASK_STATUS(String desc) { |
| | | this.desc = desc; |
| | | } |
| | | |
| | | private String desc; |
| | | |
| | | public String getDesc() { |
| | | return desc; |
| | | } |
| | | } |
| | | |
| | | public enum SMS_SEND_RESULT { |
| | | success("成功"), failure("失败"); |
| | | |
| | | SMS_SEND_RESULT(String desc) { |
| | | this.desc = desc; |
| | | } |
| | | |
| | | private String desc; |
| | | |
| | | public String getDesc() { |
| | | return desc; |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | } |