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.
25 lines
825 B
25 lines
825 B
|
1 month ago
|
package com.project.operation.application;
|
||
|
|
|
||
|
|
import com.project.operation.application.impl.OperationLogApplicationService;
|
||
|
|
import com.project.operation.domain.dto.OperationLogDTO;
|
||
|
|
import com.project.operation.domain.service.OperationLogBaseService;
|
||
|
|
import com.project.operation.domain.service.SaveOperationLogDomainService;
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
@Service
|
||
|
|
public class OperationLogApplicationServiceImpl implements OperationLogApplicationService {
|
||
|
|
|
||
|
|
@Autowired
|
||
|
|
private SaveOperationLogDomainService saveOperationLogDomainService;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 保存日志
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void saveOperationLog(OperationLogDTO operationLogDTO) {
|
||
|
|
saveOperationLogDomainService.saveOperationLog(operationLogDTO);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|