| | |
| | | package com.zy.acs.manager.core.domain.type; |
| | | |
| | | import com.zy.acs.manager.common.constant.Constants; |
| | | |
| | | public enum NamespaceType { |
| | | |
| | | RCS_TASK_REPORT("任务完成上报"), |
| | | |
| | | NONE("未知", "NONE"), |
| | | RCS_TASK_REPORT("任务完成上报", Constants.RCS), |
| | | RCS_BUS_RECEIVE("接收批次任务", Constants.UPLINK), |
| | | RCS_TASK_CANCEL("任务取消", Constants.UPLINK), |
| | | RCS_STA_QUERY("站点状态查询", Constants.DOWNLINK), |
| | | ; |
| | | |
| | | public String name; |
| | | public String desc; |
| | | |
| | | NamespaceType(String name) { |
| | | this.name = name; |
| | | public String caller; |
| | | |
| | | NamespaceType(String desc, String caller) { |
| | | this.desc = desc; |
| | | this.caller = caller; |
| | | } |
| | | |
| | | } |