Merge remote-tracking branch 'origin/czks1.0' into czks1.0
commit
a3579dd7c2
|
@ -328,7 +328,7 @@ public class AppIdentificationPartsController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -501,7 +501,7 @@ public class IdentificationPartsController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -211,7 +211,7 @@ public class LimitSpaceController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel2")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -306,7 +306,7 @@ public class RestrictedSpaceController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -592,7 +592,7 @@ public class RiskPointController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
@ -804,7 +804,7 @@ public class RiskPointController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel2")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -501,7 +501,7 @@ public class RiskPointTemporaryController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
@ -717,7 +717,7 @@ public class RiskPointTemporaryController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel2")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -402,7 +402,7 @@ public class RiskUnitController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = "/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -6,6 +6,8 @@ import java.util.HashMap;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.zcloud.aspect.DockAnnotation;
|
||||
import com.zcloud.service.system.UsersService;
|
||||
import com.zcloud.util.Jurisdiction;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
@ -45,18 +47,25 @@ public class SpecialUserController extends BaseController {
|
|||
@RequestMapping(value="/add")
|
||||
@RequiresPermissions("specialuser:add")
|
||||
@ResponseBody
|
||||
@DockAnnotation(isAdd = true)
|
||||
public Object add() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
PageData dockData = new PageData(); // 主要对接数据
|
||||
|
||||
PageData blindPageData = new PageData(); // pd对接数据
|
||||
pd.put("SPECIALUSER_ID", this.get32UUID()); //主键
|
||||
pd.put("CREATOR", Jurisdiction.getUSER_ID());
|
||||
pd.put("CREATTIME", DateUtil.date2Str(new Date()));
|
||||
pd.put("OPERATOR",Jurisdiction.getUSER_ID());
|
||||
pd.put("OPERATTIME",DateUtil.date2Str(new Date()));
|
||||
pd.put("ISDELETE","0");
|
||||
blindPageData.putAll(pd);
|
||||
dockData.put("dockData", JSON.toJSONString(blindPageData));
|
||||
specialuserService.save(pd);
|
||||
map.put("dockData", JSON.toJSONString(dockData));
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
@ -68,11 +77,14 @@ public class SpecialUserController extends BaseController {
|
|||
@RequestMapping(value="/delete")
|
||||
@RequiresPermissions("specialuser:del")
|
||||
@ResponseBody
|
||||
@DockAnnotation
|
||||
public Object delete() throws Exception{
|
||||
Map<String,String> map = new HashMap<String,String>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
PageData dockData = new PageData(); // 主要对接数据
|
||||
|
||||
// 修改与删除功能仅企业主账号可操作,并仅可修改与删除本单位添加的特种人员信息
|
||||
String corpID = Jurisdiction.getCORPINFO_ID(); // 登录企业信息
|
||||
|
||||
|
@ -103,7 +115,11 @@ public class SpecialUserController extends BaseController {
|
|||
pd.put("OPERATOR",Jurisdiction.getUSER_ID());
|
||||
pd.put("ISDELETE","0");
|
||||
pd = this.getPageData();
|
||||
PageData blindPageData = new PageData(); // pd对接数据
|
||||
blindPageData.putAll(pd);
|
||||
dockData.put("dockData", JSON.toJSONString(blindPageData));
|
||||
specialuserService.delete(pd);
|
||||
map.put("dockData", JSON.toJSONString(dockData));
|
||||
map.put("result", errInfo); //返回结果
|
||||
return map;
|
||||
}
|
||||
|
@ -115,11 +131,13 @@ public class SpecialUserController extends BaseController {
|
|||
@RequestMapping(value="/edit")
|
||||
@RequiresPermissions("specialuser:edit")
|
||||
@ResponseBody
|
||||
@DockAnnotation
|
||||
public Object edit() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
PageData dockData = new PageData();
|
||||
// 修改与删除功能仅企业主账号可操作,并仅可修改与删除本单位添加的特种人员信息
|
||||
String corpID = Jurisdiction.getCORPINFO_ID(); // 登录企业信息
|
||||
|
||||
|
@ -145,7 +163,11 @@ public class SpecialUserController extends BaseController {
|
|||
map.put("msg", "您不是企业主账号!请联系企业主账号进行修改!");
|
||||
return map;
|
||||
}
|
||||
PageData blindPageData = new PageData(); // pd对接数据
|
||||
blindPageData.putAll(pd);
|
||||
dockData.put("dockData", JSON.toJSONString(blindPageData));
|
||||
specialuserService.edit(pd);
|
||||
map.put("dockData", JSON.toJSONString(dockData));
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
@ -198,11 +220,16 @@ public class SpecialUserController extends BaseController {
|
|||
@RequestMapping(value="/deleteAll")
|
||||
@RequiresPermissions("specialuser:del")
|
||||
@ResponseBody
|
||||
@DockAnnotation
|
||||
public Object deleteAll() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
PageData dockData = new PageData();
|
||||
PageData blindPageData = new PageData(); // pd对接数据
|
||||
blindPageData.putAll(pd);
|
||||
dockData.put("dockData", JSON.toJSONString(blindPageData));
|
||||
String DATA_IDS = pd.getString("DATA_IDS");
|
||||
if(Tools.notEmpty(DATA_IDS)){
|
||||
String ArrayDATA_IDS[] = DATA_IDS.split(",");
|
||||
|
@ -211,6 +238,7 @@ public class SpecialUserController extends BaseController {
|
|||
}else{
|
||||
errInfo = "fail";
|
||||
}
|
||||
map.put("dockData", JSON.toJSONString(dockData));
|
||||
map.put("result", errInfo); //返回结果
|
||||
return map;
|
||||
}
|
||||
|
|
|
@ -231,7 +231,7 @@ public class FireDeviceController extends BaseController {
|
|||
return map;
|
||||
}
|
||||
// @RequestMapping(value="/readExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
// // @RequiresPermissions("fromExcel")
|
||||
// @SuppressWarnings("unchecked")
|
||||
// @ResponseBody
|
||||
// public Object readExcel(@RequestParam(value="excel",required=false) MultipartFile file) throws Exception {
|
||||
|
|
|
@ -0,0 +1,57 @@
|
|||
package com.zcloud.controller.gatemachine;
|
||||
|
||||
import com.zcloud.controller.base.BaseController;
|
||||
import com.zcloud.entity.Page;
|
||||
import com.zcloud.entity.PageData;
|
||||
import com.zcloud.service.gatemachine.GateAreaService;
|
||||
import com.zcloud.util.ReturnMap;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 说明:TODO
|
||||
* 作者:wangxuan
|
||||
* 官网:www.zcloudchina.com
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/gateArea")
|
||||
public class GateAreaController extends BaseController {
|
||||
|
||||
@Resource
|
||||
private GateAreaService gateAreaService;
|
||||
|
||||
|
||||
@RequestMapping(value = "/page")
|
||||
public ReturnMap page(Page page) {
|
||||
ReturnMap returnMap = new ReturnMap();
|
||||
PageData pageData = this.getPageData();
|
||||
page.setPd(pageData);
|
||||
List<PageData> data = gateAreaService.getDatalistpage(page);
|
||||
returnMap.put("varList", data);
|
||||
returnMap.put("page", page);
|
||||
return returnMap;
|
||||
}
|
||||
|
||||
@RequestMapping(value = "/edit")
|
||||
public ReturnMap edit() {
|
||||
PageData pd = this.getPageData();
|
||||
gateAreaService.edit(pd);
|
||||
return ReturnMap.ok();
|
||||
}
|
||||
@RequestMapping(value = "/removeByIds")
|
||||
public ReturnMap removeByIds() {
|
||||
PageData pageData = this.getPageData();
|
||||
gateAreaService.removeByIds(pageData);
|
||||
return ReturnMap.ok();
|
||||
}
|
||||
@RequestMapping(value = "/add")
|
||||
public ReturnMap add() {
|
||||
PageData pageData = this.getPageData();
|
||||
gateAreaService.save(pageData);
|
||||
return ReturnMap.ok();
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,59 @@
|
|||
package com.zcloud.controller.gatemachine;
|
||||
|
||||
import com.zcloud.controller.base.BaseController;
|
||||
import com.zcloud.entity.Page;
|
||||
import com.zcloud.entity.PageData;
|
||||
import com.zcloud.service.gatemachine.GateMachineService;
|
||||
import com.zcloud.util.ReturnMap;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* 说明:TODO
|
||||
* 作者:wangxuan
|
||||
* 官网:www.zcloudchina.com
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/gateMachine")
|
||||
public class GateMachineController extends BaseController {
|
||||
|
||||
@Resource
|
||||
private GateMachineService gateMachineService;
|
||||
|
||||
|
||||
|
||||
@RequestMapping(value = "/page")
|
||||
public ReturnMap page(Page page) {
|
||||
PageData pageData = this.getPageData();
|
||||
page.setPd(pageData);
|
||||
ArrayList<PageData> data = gateMachineService.getDatalistpage(page);
|
||||
ReturnMap returnMap = new ReturnMap();
|
||||
returnMap.put("varList", data);
|
||||
returnMap.put("page", page);
|
||||
return returnMap;
|
||||
}
|
||||
|
||||
|
||||
@RequestMapping(value = "/edit")
|
||||
public ReturnMap edit() {
|
||||
PageData pd = this.getPageData();
|
||||
gateMachineService.edit(pd);
|
||||
return ReturnMap.ok();
|
||||
}
|
||||
@RequestMapping(value = "/removeByIds")
|
||||
public ReturnMap removeByIds() {
|
||||
PageData pageData = this.getPageData();
|
||||
gateMachineService.removeByIds(pageData);
|
||||
return ReturnMap.ok();
|
||||
}
|
||||
@RequestMapping(value = "/add")
|
||||
public ReturnMap add() {
|
||||
PageData pageData = this.getPageData();
|
||||
gateMachineService.save(pageData);
|
||||
return ReturnMap.ok();
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,225 @@
|
|||
package com.zcloud.controller.gatemachine;
|
||||
|
||||
import com.zcloud.controller.base.BaseController;
|
||||
import com.zcloud.entity.Page;
|
||||
import com.zcloud.entity.PageData;
|
||||
import com.zcloud.service.gatemachine.GateVideoService;
|
||||
import com.zcloud.util.DateUtil;
|
||||
import com.zcloud.util.Jurisdiction;
|
||||
import com.zcloud.util.Tools;
|
||||
import com.zcloud.util.hk.HKUtil;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 说明:视频管理
|
||||
* 作者:luoxiaobao
|
||||
* 时间:2021-05-10
|
||||
* 官网:www.zcloudchina.com
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/gateVideo")
|
||||
public class GateVideoController extends BaseController {
|
||||
|
||||
@Autowired
|
||||
private GateVideoService gateVideoService;
|
||||
|
||||
/**新增
|
||||
* @param
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/add")
|
||||
@ResponseBody
|
||||
public Object add() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
pd.put("GATEVIDEO_ID", this.get32UUID()); //主键
|
||||
pd.put("OPDATE", DateUtil.date2Str(new Date())); //操作日期
|
||||
pd.put("OPUSER", Jurisdiction.getUsername()); //操作人
|
||||
pd.put("ISDELETE", "0"); //是否删除
|
||||
gateVideoService.save(pd);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
/**删除
|
||||
* @param out
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/delete")
|
||||
@ResponseBody
|
||||
public Object delete() throws Exception{
|
||||
Map<String,String> map = new HashMap<String,String>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
gateVideoService.delete(pd);
|
||||
map.put("result", errInfo); //返回结果
|
||||
return map;
|
||||
}
|
||||
|
||||
/**修改
|
||||
* @param
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/edit")
|
||||
@ResponseBody
|
||||
public Object edit() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
gateVideoService.edit(pd);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
/**定位
|
||||
* @param
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/savePosition")
|
||||
@ResponseBody
|
||||
public Object savePosition() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
gateVideoService.savePosition(pd);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
@RequestMapping(value="/goAllVideo")
|
||||
@ResponseBody
|
||||
public Object goAllVideo() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
|
||||
String DATA_IDS = pd.getString("DATA_IDS");
|
||||
if(Tools.notEmpty(DATA_IDS)){
|
||||
String ArrayDATA_IDS[] = DATA_IDS.split(",");
|
||||
pd.put("ArrayDATA_IDS", ArrayDATA_IDS);
|
||||
}
|
||||
List<PageData> videoList = gateVideoService.listBo(pd); //根据ID读取
|
||||
for (PageData video : videoList) {
|
||||
if(video.get("INDEXCODE")!=null && !"".equals(video.getString("INDEXCODE"))){
|
||||
Map<String, Object> data = HKUtil.camerasPreviewURLs(video.getString("INDEXCODE"), "hls");
|
||||
video.put("HLSVIDEOURL", data);
|
||||
Map<String, Object> resData = (Map<String, Object>) data.get("data");
|
||||
video.put("GBSVIDEOURL",resData.get("url"));
|
||||
}
|
||||
}
|
||||
map.put("videoList", videoList);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
/**列表
|
||||
* @param page
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/list")
|
||||
@ResponseBody
|
||||
public Object list(Page page) throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件
|
||||
if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim());
|
||||
|
||||
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
||||
page.setPd(pd);
|
||||
|
||||
List<PageData> varList = gateVideoService.list(page); //列出VideoManager列表
|
||||
map.put("varList", varList);
|
||||
map.put("page", page);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
@RequestMapping(value="/listAllForMap")
|
||||
@ResponseBody
|
||||
public Object listAllForMap() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
|
||||
List<PageData> videoList = gateVideoService.listAllForMap(pd); //根据ID读取
|
||||
map.put("videoList", videoList);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
@RequestMapping(value="/editIsShow")
|
||||
@ResponseBody
|
||||
public Object editIsShow() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
PageData epd = new PageData();
|
||||
epd.put("ISSHOW", '0');
|
||||
epd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
||||
gateVideoService.editIsShowBycorpinfoid(epd); //根据ID读取
|
||||
|
||||
pd.put("ISSHOW", '1');
|
||||
gateVideoService.editIsShow(pd); //根据ID读取
|
||||
map.put("pd", pd);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
/**去修改页面获取数据
|
||||
* @param
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/goEdit")
|
||||
@ResponseBody
|
||||
public Object goEdit() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
pd = gateVideoService.findById(pd); //根据ID读取
|
||||
map.put("pd", pd);
|
||||
map.put("result", errInfo);
|
||||
return map;
|
||||
}
|
||||
|
||||
/**批量删除
|
||||
* @param
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/deleteAll")
|
||||
@ResponseBody
|
||||
public Object deleteAll() throws Exception{
|
||||
Map<String,Object> map = new HashMap<String,Object>();
|
||||
String errInfo = "success";
|
||||
PageData pd = new PageData();
|
||||
pd = this.getPageData();
|
||||
String DATA_IDS = pd.getString("DATA_IDS");
|
||||
if(Tools.notEmpty(DATA_IDS)){
|
||||
String ArrayDATA_IDS[] = DATA_IDS.split(",");
|
||||
gateVideoService.deleteAll(ArrayDATA_IDS);
|
||||
errInfo = "success";
|
||||
}else{
|
||||
errInfo = "error";
|
||||
}
|
||||
map.put("result", errInfo); //返回结果
|
||||
return map;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -194,7 +194,7 @@ public class GFLimitSpaceController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel2")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -306,7 +306,7 @@ public class QuestionController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
|
|
@ -1238,7 +1238,7 @@ public class UsersController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = "/readExcel")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
public Object readExcel(@RequestParam(value = "excel", required = false) MultipartFile file) throws Exception {
|
||||
|
@ -1452,7 +1452,7 @@ public class UsersController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = "/readExcel2")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
@Transactional
|
||||
|
@ -1946,7 +1946,7 @@ public class UsersController extends BaseController {
|
|||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = "/readExcel3")
|
||||
@RequiresPermissions("fromExcel")
|
||||
// @RequiresPermissions("fromExcel")
|
||||
@SuppressWarnings("unchecked")
|
||||
@ResponseBody
|
||||
public Object readExcel3(@RequestParam(value = "FFILE", required = false) MultipartFile file) throws Exception {
|
||||
|
|
|
@ -2,7 +2,9 @@ package com.zcloud.service.gatemachine.impl;
|
|||
|
||||
import com.zcloud.entity.Page;
|
||||
import com.zcloud.entity.PageData;
|
||||
import com.zcloud.mapper.datasource.gatemachine.*;
|
||||
import com.zcloud.mapper.datasource.gatemachine.GateAreaMapper;
|
||||
import com.zcloud.mapper.datasource.gatemachine.GateMachineMapper;
|
||||
import com.zcloud.mapper.datasource.gatemachine.GateVideoMapper;
|
||||
import com.zcloud.service.gatemachine.GateMachineService;
|
||||
import com.zcloud.service.keyProjects.VideoManagerService;
|
||||
import com.zcloud.util.InitPageDataUtil;
|
||||
|
|
|
@ -49,14 +49,14 @@ public class HKUtil {
|
|||
*/
|
||||
public static Map<String,Object> camerasPreviewURLs(String id,String type){
|
||||
JSONObject jsonBody = new JSONObject();
|
||||
jsonBody.put("indexCode", id);
|
||||
jsonBody.put("cameraIndexCode", id);
|
||||
jsonBody.put("netZoneCode", "1");
|
||||
jsonBody.put("transmode", 1);
|
||||
jsonBody.put("streamType", 0);
|
||||
jsonBody.put("protocol",type);
|
||||
jsonBody.put("expireTime", -1);
|
||||
jsonBody.put("expand","transcode=1&streamform=rtp");
|
||||
Map<String,Object> returnMap=publicHkInterface(jsonBody,"/api/vnsc/mls/v1/preview/openApi/getPreviewParam");
|
||||
Map<String,Object> returnMap=publicHkInterface(jsonBody,"/api/video/v1/cameras/previewURLs");
|
||||
return returnMap;
|
||||
}
|
||||
|
||||
|
|
Before Width: | Height: | Size: 545 KiB After Width: | Height: | Size: 545 KiB |
Loading…
Reference in New Issue