|
|
|
@ -8,8 +8,12 @@ import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.BusinessType;
|
|
|
|
|
import com.glxp.api.constant.FileConstant;
|
|
|
|
|
import com.glxp.api.constant.SocketMsgType;
|
|
|
|
|
import com.glxp.api.controller.BaseController;
|
|
|
|
|
import com.glxp.api.controller.sync.SpsSyncWebSocket;
|
|
|
|
|
import com.glxp.api.entity.dev.DeviceAssetCertEntity;
|
|
|
|
|
import com.glxp.api.entity.sync.SocketMsgEntity;
|
|
|
|
|
import com.glxp.api.req.basic.BasicDataRequest;
|
|
|
|
|
import com.glxp.api.req.dev.PostDeviceCertRequest;
|
|
|
|
|
import com.glxp.api.req.inv.FilterInvCertRequest;
|
|
|
|
|
import com.glxp.api.req.system.DeleteDeviceFileRequest;
|
|
|
|
@ -17,6 +21,7 @@ import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.service.dev.DeviceAssetCertService;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.java_websocket.server.WebSocketServer;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@ -30,6 +35,7 @@ import java.time.Instant;
|
|
|
|
|
import java.time.LocalDate;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import java.time.ZoneOffset;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -44,6 +50,9 @@ public class DeviceAssetCertController extends BaseController {
|
|
|
|
|
private DeviceAssetCertService deviceAssetCertService;
|
|
|
|
|
@Resource
|
|
|
|
|
private CustomerService customerService;
|
|
|
|
|
@Resource
|
|
|
|
|
SpsSyncWebSocket webSocketServer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/inv/device/cert/filter")
|
|
|
|
@ -63,7 +72,7 @@ public class DeviceAssetCertController extends BaseController {
|
|
|
|
|
@Log(title = "资质证书", businessType = BusinessType.INSERT)
|
|
|
|
|
public BaseResponse insertDeviceCert(@RequestBody DeviceAssetCertEntity deviceAssetCertEntity) {
|
|
|
|
|
String userId = customerService.getUserId()+ "";
|
|
|
|
|
LocalDate now = LocalDate.now();
|
|
|
|
|
Date now = new Date();
|
|
|
|
|
deviceAssetCertEntity.setCreateTime(now);
|
|
|
|
|
deviceAssetCertEntity.setUpdateTime(now);
|
|
|
|
|
deviceAssetCertEntity.setCreateUser(userId);
|
|
|
|
@ -78,11 +87,21 @@ public class DeviceAssetCertController extends BaseController {
|
|
|
|
|
@PostMapping("/inv/info/deleteDeviceCert")
|
|
|
|
|
public BaseResponse deleteDeviceCert(@RequestBody DeleteDeviceFileRequest deleteDeviceFileRequest) {
|
|
|
|
|
boolean b = deviceAssetCertService.deleteById(deleteDeviceFileRequest.getId());
|
|
|
|
|
String URL = filePath + FileConstant.COMMON_FILE_PATH + deleteDeviceFileRequest.getFilePath();
|
|
|
|
|
String URL = filePath + FileConstant.DEV_COMMON_FILE_PATH + deleteDeviceFileRequest.getFilePath();
|
|
|
|
|
File file = new File(URL);
|
|
|
|
|
if (file.exists() && file.isFile()) {
|
|
|
|
|
file.delete();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BasicDataRequest basicDataRequest = new BasicDataRequest();
|
|
|
|
|
basicDataRequest.setDeleteDeviceFileRequest(deleteDeviceFileRequest);
|
|
|
|
|
Long userId = getUserId();
|
|
|
|
|
basicDataRequest.setKey("DEVICE_CERT_TYPE");
|
|
|
|
|
//推送
|
|
|
|
|
BasicDataRequest request = webSocketServer.insert(basicDataRequest, userId + "");
|
|
|
|
|
request.setDeleteDeviceFileRequest(deleteDeviceFileRequest);
|
|
|
|
|
webSocketServer.sendMessage(SocketMsgEntity.builder().type(SocketMsgType.DEVICE_CERT_TYPE_DELETE).content(request).remark("设备资质材料").build(), null);
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success("成功");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -105,7 +124,7 @@ public class DeviceAssetCertController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
String userId = customerService.getUserId()+ "";
|
|
|
|
|
LocalDate now = LocalDate.now();
|
|
|
|
|
Date now = new Date();
|
|
|
|
|
deviceAssetCertEntity.setUpdateTime(now);
|
|
|
|
|
deviceAssetCertEntity.setUpdateUser(userId);
|
|
|
|
|
boolean b = deviceAssetCertService.updateDeviceCert(deviceAssetCertEntity);
|
|
|
|
|