模型库
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
package com.yj.earth.dto.businessConfig;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AddBusinessConfigDto {
|
||||
@Schema(description = "键")
|
||||
private String key;
|
||||
|
||||
@Schema(description = "值")
|
||||
private String value;
|
||||
}
|
||||
12
src/main/java/com/yj/earth/dto/model/AddModelTypeDto.java
Normal file
12
src/main/java/com/yj/earth/dto/model/AddModelTypeDto.java
Normal file
@ -0,0 +1,12 @@
|
||||
package com.yj.earth.dto.model;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AddModelTypeDto {
|
||||
@Schema(description = "模型类型名称")
|
||||
private String name;
|
||||
@Schema(description = "父级节点ID")
|
||||
private String parentId;
|
||||
}
|
||||
@ -4,9 +4,9 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CreateModelFileDto {
|
||||
public class CreateModelLibraryDto {
|
||||
@Schema(description = "模型库文件名称")
|
||||
private String modelFileName;
|
||||
private String name;
|
||||
@Schema(description = "生成文件夹路径")
|
||||
private String folderPath;
|
||||
private String path;
|
||||
}
|
||||
Reference in New Issue
Block a user