优化apms对接时发现的问题。
This commit is contained in:
@@ -69,7 +69,6 @@ public class ApmsController extends BaseController {
|
||||
@PostMapping(value = "apmsVoidOrder")
|
||||
@ApiOperation(value = "WMS接收APMS作废订单信息")
|
||||
public R<String> apmsVoidOrder(@Validated @RequestBody Iden idenCardNum) {
|
||||
//todo 改动为json值
|
||||
CommunicationLog communicationLog = new CommunicationLog();
|
||||
communicationLog.setCode("APMS" + System.currentTimeMillis());
|
||||
communicationLog.setLogName("WMS接收APMS作废订单信息");
|
||||
|
||||
@@ -16,7 +16,7 @@ public class ApmsCompleteOrder extends BaseParam {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "生产单编号", required = false)
|
||||
@ApiModelProperty(value = "生产单编号", required = true)
|
||||
private String sheetNo;
|
||||
|
||||
/**
|
||||
@@ -31,7 +31,17 @@ public class ApmsCompleteOrder extends BaseParam {
|
||||
@ApiModelProperty(value = "金相检验结果", required = true)
|
||||
private String metallographic;
|
||||
|
||||
@ApiModelProperty(value = "心部硬度检验值", required = true)
|
||||
private Float heartHardness;
|
||||
@ApiModelProperty(value = "心部硬度检验值", required = false)
|
||||
private String heartHardness;
|
||||
|
||||
@ApiModelProperty(value = "硬度检验值1", required = false)
|
||||
private String hardnessValueOne;
|
||||
@ApiModelProperty(value = "硬度检验值2", required = false)
|
||||
private String hardnessValueTwo;
|
||||
@ApiModelProperty(value = "硬度检验值3", required = false)
|
||||
private String hardnessValueThree;
|
||||
|
||||
@ApiModelProperty(value = "备注", required = false)
|
||||
private String remake;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user