嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/service/impl/BsOperationLogServiceImpl.java

30 lines
850 B

package com.hai.service.impl;
import com.hai.dao.BsOperationLogMapper;
import com.hai.entity.BsOperationLog;
import com.hai.service.BsOperationLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
import java.util.Map;
@Service("bsOperationLogService")
public class BsOperationLogServiceImpl implements BsOperationLogService {
@Resource
private BsOperationLogMapper bsOperationLogMapper;
@Override
public List<BsOperationLog> getListOperationLog(Map<String, Object> map) {
return null;
}
@Override
public void insertOperationLog(BsOperationLog bsOperationLog) {
bsOperationLog.setCreateTime(new Date());
bsOperationLog.setUpdateTime(new Date());
bsOperationLogMapper.insert(bsOperationLog);
}
}