最新产品
This commit is contained in:
18
src/main/java/com/yj/earth/dto/source/AddModelSourceDto.java
Normal file
18
src/main/java/com/yj/earth/dto/source/AddModelSourceDto.java
Normal file
@ -0,0 +1,18 @@
|
||||
package com.yj.earth.dto.source;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AddModelSourceDto {
|
||||
@Schema (description = "资源ID")
|
||||
private String id;
|
||||
@Schema(description = "资源路径")
|
||||
private String sourcePath;
|
||||
@Schema(description = "父节点ID")
|
||||
private String parentId;
|
||||
@Schema(description = "树状索引")
|
||||
private Integer treeIndex;
|
||||
@Schema(description = "前端参数")
|
||||
private String params;
|
||||
}
|
Reference in New Issue
Block a user