资源相关
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
package com.yj.earth.dto.source;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class UploadLocationImageDto {
|
||||
@Schema(description = "资源ID列表")
|
||||
private List<String> ids;
|
||||
@Schema(description = "父节点ID")
|
||||
private String parentId;
|
||||
@Schema(description = "树状索引")
|
||||
private Integer treeIndex;
|
||||
}
|
||||
Reference in New Issue
Block a user