mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 05:42:06 +08:00
1.新增获取机台与标签详情rpc接口,2.定义获取生产单源数据接口
This commit is contained in:
+6
@@ -2,6 +2,7 @@ package com.cf.imes.module.system.api.machine;
|
||||
|
||||
import com.cf.imes.framework.common.pojo.CommonResult;
|
||||
import com.cf.imes.module.system.api.machine.dto.CuttingRespDTO;
|
||||
import com.cf.imes.module.system.api.machine.dto.MachineDTO;
|
||||
import com.cf.imes.module.system.enums.ApiConstants;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.Parameter;
|
||||
@@ -36,4 +37,9 @@ public interface MachineApi {
|
||||
@Parameter(name = "ids", description = "机台id", example = "1024", required = true)
|
||||
CommonResult<List<CuttingRespDTO>> list(@RequestParam("ids") Collection<Long> ids);
|
||||
|
||||
@GetMapping(PREFIX + "/get-machine-detail")
|
||||
@Operation(summary = "获得机台详情")
|
||||
@Parameter(name = "id", description = "机台id", example = "1024", required = true)
|
||||
CommonResult<MachineDTO> getMachineDetail(@RequestParam("id") Long id);
|
||||
|
||||
}
|
||||
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
package com.cf.imes.module.system.api.machine.dto;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* @author Beal
|
||||
*
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class MachineDTO {
|
||||
|
||||
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "14092")
|
||||
private Long id;
|
||||
|
||||
@Schema(description = "名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "王五")
|
||||
private String name;
|
||||
|
||||
@Schema(description = "1机台设备 2CNC设备", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
|
||||
private Integer machineType;
|
||||
|
||||
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||
private LocalDateTime createTime;
|
||||
|
||||
@Schema(description = "机台配置")
|
||||
private String setting;
|
||||
|
||||
@Schema(description = "标签配置")
|
||||
private String label;
|
||||
}
|
||||
+21
@@ -1,9 +1,13 @@
|
||||
package com.cf.imes.module.system.api.machine;
|
||||
|
||||
import com.cf.imes.framework.common.pojo.CommonResult;
|
||||
import com.cf.imes.framework.common.util.json.JsonUtils;
|
||||
import com.cf.imes.framework.common.util.object.BeanUtils;
|
||||
import com.cf.imes.module.system.api.machine.dto.CuttingRespDTO;
|
||||
import com.cf.imes.module.system.api.machine.dto.MachineDTO;
|
||||
import com.cf.imes.module.system.controller.admin.label.vo.LabelRespVO;
|
||||
import com.cf.imes.module.system.controller.admin.machine.vo.CuttingRespVO;
|
||||
import com.cf.imes.module.system.service.lable.LabelService;
|
||||
import com.cf.imes.module.system.service.machine.MachineService;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
@@ -22,6 +26,9 @@ public class MachineApiImpl implements MachineApi {
|
||||
@Resource
|
||||
private MachineService machineService;
|
||||
|
||||
@Resource
|
||||
private LabelService labelService;
|
||||
|
||||
@Override
|
||||
public CommonResult<CuttingRespDTO> getCutting(Long id) {
|
||||
return success(BeanUtils.toBean(machineService.getCutting(id), CuttingRespDTO.class));
|
||||
@@ -36,4 +43,18 @@ public class MachineApiImpl implements MachineApi {
|
||||
public CommonResult<List<CuttingRespDTO>> list(Collection<Long> ids) {
|
||||
return success(BeanUtils.toBean(machineService.list(ids), CuttingRespDTO.class));
|
||||
}
|
||||
|
||||
@Override
|
||||
public CommonResult<MachineDTO> getMachineDetail(Long id) {
|
||||
CuttingRespVO cutting = machineService.getCutting(id);
|
||||
LabelRespVO label = labelService.getLabel(cutting.getLabelId());
|
||||
MachineDTO machineDTO = MachineDTO.builder()
|
||||
.id(cutting.getId())
|
||||
.machineType(cutting.getMachineType())
|
||||
.name(cutting.getName())
|
||||
.setting(cutting.getMachineSettingDO().toJSONString())
|
||||
.label(JsonUtils.toJsonString(label))
|
||||
.build();
|
||||
return success(machineDTO);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user