Commit a208ead6 by zhiwj

审核日志修改

parent 306043ad
......@@ -78,10 +78,12 @@ public class LogUtils {
* @Description:

 * @author guojuxing
* @param content 操作内容
* @param operationObject
 操作对象
* @param operationObject 
 操作对象
* @param s
* @param auditorPhone
* @return void


 */
public static void createLog(String content, String operationObject, String username, Integer enterpriseId, String enterpriseName) {
public static void createLog(String content, String operationObject, String username, Integer enterpriseId, String enterpriseName, String phoneAreaCode, String auditorPhone) {
UserDetail userDetail = UserDetailUtils.getUserDetail();
final SystemSetLogDTO logDTO = new SystemSetLogDTO();
//操作时间
......@@ -94,6 +96,10 @@ public class LogUtils {
logDTO.setContent(content);
//
logDTO.setBusinessName(operationObject);
//账号(手机号)
logDTO.setRemark1(userDetail.getUserInfo().getPhoneAreaCode());
logDTO.setRemark2(userDetail.getUserInfo().getPhoneNumber());
//操作模块
// String moduleMenuName = (String) RequestContext.getContext().getRequest().getAttribute("moduleMenuName");
// Integer moduleMenuId = (Integer) RequestContext.getContext().getRequest().getAttribute("moduleMenuId");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment