班组信息审计日志添加
This commit is contained in:
parent
fd8e6d6e20
commit
3b86f861b5
|
|
@ -5,7 +5,9 @@ import com.github.pagehelper.PageHelper;
|
||||||
import com.github.pagehelper.PageInfo;
|
import com.github.pagehelper.PageInfo;
|
||||||
import com.securityControl.common.core.web.domain.AjaxResult;
|
import com.securityControl.common.core.web.domain.AjaxResult;
|
||||||
import com.securityControl.common.log.annotation.Log;
|
import com.securityControl.common.log.annotation.Log;
|
||||||
|
import com.securityControl.common.log.annotation.SysLog;
|
||||||
import com.securityControl.common.log.enums.BusinessType;
|
import com.securityControl.common.log.enums.BusinessType;
|
||||||
|
import com.securityControl.common.log.enums.OperaType;
|
||||||
import com.sercurityControl.proteam.dutyTask.domain.AdmittedPersonEntity;
|
import com.sercurityControl.proteam.dutyTask.domain.AdmittedPersonEntity;
|
||||||
import com.sercurityControl.proteam.dutyTask.service.AdmittedPersonService;
|
import com.sercurityControl.proteam.dutyTask.service.AdmittedPersonService;
|
||||||
import com.sercurityControl.proteam.util.ImgToBase64Util;
|
import com.sercurityControl.proteam.util.ImgToBase64Util;
|
||||||
|
|
@ -43,7 +45,7 @@ public class AdmittedPersonController {
|
||||||
* @date 2023-05-18 14:50
|
* @date 2023-05-18 14:50
|
||||||
*/
|
*/
|
||||||
@PostMapping(value = "getAdmittedPersonList")
|
@PostMapping(value = "getAdmittedPersonList")
|
||||||
@Log(title = "准入人员", menu = "准入人员->准入人员列表", businessType = BusinessType.QUERY, details = "准入人员列表")
|
@SysLog(title = "准入人员", model = "班组信息->准入人员", operaType = OperaType.QUERY, details = "查询准入人员数据",logType = 1)
|
||||||
public Map<String, Object> getAdmittedPersonList(AdmittedPersonEntity entity) {
|
public Map<String, Object> getAdmittedPersonList(AdmittedPersonEntity entity) {
|
||||||
PageHelper.startPage(Integer.parseInt(entity.getPage()), Integer.parseInt(entity.getLimit()));
|
PageHelper.startPage(Integer.parseInt(entity.getPage()), Integer.parseInt(entity.getLimit()));
|
||||||
Map<String, Object> map = new HashMap<String, Object>(16);
|
Map<String, Object> map = new HashMap<String, Object>(16);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue