解决冲突

yun-zuoyi
Silliter 7 years ago
parent 4b5b6136d7
commit 800c77cf1d

@ -1769,4 +1769,37 @@ public class WmsEnumUtil {
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum RC_OK_VALUE {
IS_TRUE(10, true, "成功"),
IS_FALSE(20, false, "失败");
private int value;
private boolean codeValue;
private String description;
RC_OK_VALUE(int value, boolean codeValue, String description) {
this.value = value;
this.codeValue = codeValue;
this.description = description;
}
public int getValue() {
return value;
}
public boolean getCodeValue() {
return codeValue;
}
public String getDescription() {
return description;
}
}
}

@ -54,4 +54,8 @@ public class WmsActionStepCall extends BaseBean {
@Column(name="AM_TYPE")
@ApiParam(value = "组件类型", example = "0")
public Integer amType;
@Column(name="OK_VALUE")
@ApiParam(value = "成功标志", example = "10")
public Integer okValue;
}

Loading…
Cancel
Save