图标库
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.iconLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AddIconTypeDto {
|
||||
@Schema(description = "图标类型名称")
|
||||
private String name;
|
||||
@Schema(description = "父级节点ID")
|
||||
private String parentId;
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.iconLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CreateIconLibraryDto {
|
||||
@Schema(description = "图标库文件名称")
|
||||
private String name;
|
||||
@Schema(description = "生成文件夹路径")
|
||||
private String path;
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.yj.earth.dto.iconLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class DragIconTypeDto {
|
||||
@Schema(description = "图标类型ID")
|
||||
private String id;
|
||||
@Schema(description = "父级节点ID")
|
||||
private String parentId;
|
||||
@Schema(description = "树状索引")
|
||||
private String treeIndex;
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.iconLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateIconTypeNameDto {
|
||||
@Schema(description = "图标类型ID")
|
||||
private String id;
|
||||
@Schema(description = "图标类型名称")
|
||||
private String name;
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.yj.earth.dto.militaryLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class DragMilitaryTypeDto {
|
||||
@Schema(description = "军标类型ID")
|
||||
private String id;
|
||||
@Schema(description = "父级节点ID")
|
||||
private String parentId;
|
||||
@Schema(description = "树状索引")
|
||||
private String treeIndex;
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.militaryLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateMilitaryTypeNameDto {
|
||||
@Schema(description = "军标类型ID")
|
||||
private String id;
|
||||
@Schema(description = "军标类型名称")
|
||||
private String name;
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.yj.earth.dto.modelLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class DragModelTypeDto {
|
||||
@Schema(description = "模型类型ID")
|
||||
private String id;
|
||||
@Schema(description = "父级节点ID")
|
||||
private String parentId;
|
||||
@Schema(description = "树状索引")
|
||||
private String treeIndex;
|
||||
}
|
||||
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.modelLibrary;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateModelTypeNameDto {
|
||||
@Schema(description = "模型类型ID")
|
||||
private String id;
|
||||
@Schema(description = "模型类型名称")
|
||||
private String name;
|
||||
}
|
||||
12
src/main/java/com/yj/earth/dto/source/UpdateLevelDto.java
Normal file
12
src/main/java/com/yj/earth/dto/source/UpdateLevelDto.java
Normal file
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.source;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateLevelDto {
|
||||
@Schema(description = "资源ID")
|
||||
private String id;
|
||||
@Schema(description = "层级索引")
|
||||
private Integer layerIndex;
|
||||
}
|
||||
Reference in New Issue
Block a user