lin 3 years ago
parent
commit
c2fbeadd8c

+ 12 - 0
zoniot-rmcp/zoniot-rmcp-api/src/main/java/com/zcxk/rmcp/api/dto/install/InstallPlanDataDto.java

@@ -47,4 +47,16 @@ public class InstallPlanDataDto {
 
     @ApiModelProperty(value = "子类", position = 100)
     private List<InstallPlanDataDto> children;
+
+
+    public InstallPlanDataDto() {
+    }
+
+    public InstallPlanDataDto(String name) {
+        this.name = name;
+    }
+    public InstallPlanDataDto(String name, String fileNo) {
+        this.name = name;
+        this.fileNo = fileNo;
+    }
 }