厂家管理,系统用户,摄像头页面

This commit is contained in:
ifish7
2017-08-16 18:25:43 +08:00
parent 7de1489e10
commit c67116b3db
32 changed files with 2374 additions and 66 deletions
@@ -129,6 +129,18 @@ public class Factory {
return factoryHelperI.authorizationQuery(factoryCode, createTimeBefore, createTimeAfter);
}
/**
* 授权统计操作记录
*
* @param factoryCode
* @param billMonth
* @return
*/
@RequestMapping(value = {"/recorddetail"}, method = RequestMethod.GET)
public ModelAndView recorddetail(String factoryCode, String billMonth) {
return factoryHelperI.recorddetail(factoryCode, billMonth);
}
/**
* 账单列表
*
@@ -188,6 +200,16 @@ public class Factory {
return factoryHelperI.paydetail(factoryCode, billMonth);
}
/**
* 账单列表详情记录
*
* @param factoryCode
* @param billMonth
* @param draw
* @param start
* @param length
* @return
*/
@RequestMapping(value = {"/paydetailDate"}, method = RequestMethod.POST)
@ResponseBody
public Object paydetailDate(String factoryCode, String billMonth, String draw, Integer start, Integer length) {