package com.panzhihua.common.api;
|
|
/**
|
* 攀枝花综治网格化-事件上报接口列表-测试环境接口
|
* des
|
* @author manailin
|
* @date 2021/06/16
|
*/
|
public class LangchaoApiConstants
|
{
|
|
/**
|
* 获取token
|
*/
|
public static final String GRID_GET_TOKEN_URL = "http://171.217.92.33:53303/aaToken?username=#username&password=#password";
|
/**
|
* 提交事件登记(自处)
|
*/
|
public static final String GRID_REGIST_EVENT_URL = "http://171.217.92.33:53303/businessData/registEventInfo";
|
/**
|
* 上传附件,仅上传文件流,服务器根据文件名自行匹配
|
*/
|
public static final String GRID_EVENT_FILE_UPLOAD_URL = "http://171.217.92.33:53303/businessData/upload";
|
/**
|
* 事件类型获取
|
*/
|
public static final String GRID_EVENT_CATEGORY_URL = "http://171.217.92.33:53303/businessData/getEventType";
|
/**
|
* 事件查询接口
|
*/
|
public static final String GRID_EVENT_INFO_URL = "http://171.217.92.33:53303/businessData/getEventListInfo";
|
/**
|
* 获取指定APP登记事件详情信息
|
*/
|
public static final String GRID_EVENT_INFO_DETAIL_URL = "http://171.217.92.33:53303/businessData/getEventDetails";
|
/**
|
* 获取指定事件信息
|
*/
|
public static final String GRID_APP_EVENT_INFO_DETAIL_URL = "http://171.217.92.33:53303/businessData/getAppointEventInfo";
|
/**
|
* 通过AREAID获取辖区网格树
|
*/
|
public static final String GRID_GET_EVENT_INFO_AREA_ID_URL = "http://171.217.92.33:53303/area/getAreaGridTreeByAreaId";
|
}
|