S3Util 工具类修改
This commit is contained in:
@@ -29,7 +29,7 @@ public class DesignPythonItemPrint {
|
||||
* 是否打点
|
||||
*/
|
||||
@ApiModelProperty("是否打点 是传true 否则false")
|
||||
private Boolean IfSingle;
|
||||
private Boolean ifSingle;
|
||||
|
||||
|
||||
@ApiModelProperty("print的位置 传 [[0.2, 0.2]]")
|
||||
@@ -43,14 +43,14 @@ public class DesignPythonItemPrint {
|
||||
|
||||
@JSONField(name = "IfSingle")
|
||||
public Boolean getIfSingle() {
|
||||
return IfSingle;
|
||||
return ifSingle;
|
||||
}
|
||||
|
||||
public DesignPythonItemPrint(String singlePath, String level1Type, Float scale, Boolean ifSingle) {
|
||||
this.path = singlePath;
|
||||
this.level1Type = level1Type;
|
||||
this.scale = scale;
|
||||
IfSingle = ifSingle;
|
||||
this.ifSingle = ifSingle;
|
||||
}
|
||||
|
||||
public DesignPythonItemPrint() {
|
||||
@@ -62,6 +62,6 @@ public class DesignPythonItemPrint {
|
||||
|
||||
public DesignPythonItemPrint(List<String> print_path_list, Boolean ifSingle) {
|
||||
this.print_path_list = print_path_list;
|
||||
IfSingle = ifSingle;
|
||||
this.ifSingle = ifSingle;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user