|
|
|
@ -7,80 +7,85 @@ package com.elink.esua.epdc.constant; |
|
|
|
*/ |
|
|
|
public interface PushToCityGridConstant { |
|
|
|
|
|
|
|
/** |
|
|
|
* 市平台地址 |
|
|
|
*/ |
|
|
|
public final static String URL_PREFIX = "http://60.166.25.58:6120/sjgl/a/case"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 民生诉求上报 |
|
|
|
*/ |
|
|
|
public final static String CASE_LIVELIHOOD = "http://ip:port/case/dispatch"; |
|
|
|
public final static String CASE_LIVELIHOOD = URL_PREFIX + "/dispatch"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 发展诉求上报 |
|
|
|
*/ |
|
|
|
public final static String CASE_DEVELOP = "http://ip:port/case/dispatch"; |
|
|
|
public final static String CASE_DEVELOP = URL_PREFIX + "/dispatch"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 执法诉求上报 |
|
|
|
*/ |
|
|
|
public final static String CASE_LAWENFORCEMENT = "http://ip:port/case/dispatch"; |
|
|
|
public final static String CASE_LAWENFORCEMENT = URL_PREFIX + "/dispatch"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求派遣 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_DISPATCH = "http://ip:port/case/dispatch"; |
|
|
|
public final static String APPEAL_DISPATCH = URL_PREFIX + "/dispatch"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求结案 |
|
|
|
*/ |
|
|
|
public final static String CASE_CLOSED = "http://ip:port/case/closed"; |
|
|
|
public final static String CASE_CLOSED = URL_PREFIX + "/closed"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 派遣审核 |
|
|
|
*/ |
|
|
|
public final static String DISP_ATCH_AUDIT = "http://ip:port/case/dispatchAudit"; |
|
|
|
public final static String DISP_ATCH_AUDIT = URL_PREFIX + "/dispatchAudit"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求上报 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_REPORT = "http://ip:port/case/report"; |
|
|
|
public final static String APPEAL_REPORT = URL_PREFIX + "/report"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 上报驳回 |
|
|
|
*/ |
|
|
|
public final static String REPORT_REBUT = "http://ip:port/case/ reportRebut"; |
|
|
|
public final static String REPORT_REBUT = URL_PREFIX + "/ reportRebut"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求处理 |
|
|
|
*/ |
|
|
|
public final static String HANDLE = "http://ip:port/case/ handle"; |
|
|
|
public final static String HANDLE = URL_PREFIX + "/ handle"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求废弃 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_SCRAP = "http://ip:port/case/scrap"; |
|
|
|
public final static String APPEAL_SCRAP = URL_PREFIX + "/scrap"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求督办 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_SUPERVISE = "http://ip:port/case/supervise"; |
|
|
|
public final static String APPEAL_SUPERVISE = URL_PREFIX + "/supervise"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 诉求废弃 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_WHISTLE_REPORT = "http://ip:port/case/whistle/report"; |
|
|
|
public final static String APPEAL_WHISTLE_REPORT = URL_PREFIX + "/whistle/report"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 吹哨驳回 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_WHISTLE_REPORT_REJECT = "http://ip:port/case/whistle/reportreject"; |
|
|
|
public final static String APPEAL_WHISTLE_REPORT_REJECT = URL_PREFIX + "/whistle/reportreject"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 吹哨反馈 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_WHISTLE_FEEDBACK = "http://ip:port/case/whistle/feedback"; |
|
|
|
public final static String APPEAL_WHISTLE_FEEDBACK = URL_PREFIX + "/whistle/feedback"; |
|
|
|
|
|
|
|
/** |
|
|
|
* 事件感知 |
|
|
|
*/ |
|
|
|
public final static String APPEAL_MSG = "http://ip:port/case/msg"; |
|
|
|
public final static String APPEAL_MSG = URL_PREFIX + "/msg"; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|