123456789101112131415161718192021 |
- package com.fdkankan.manage_jp.httpClient.param;
- import lombok.Data;
- @Data
- public class UploadEditSceneParam {
- /**
- * {
- * "title":"测试AZ-1","userId":968,"otherType":"AZ","path":"reverseScene/original_auto3d-light-local-oZE6pxg53dYmDb02.zip"
- * }
- */
- private String title;
- private Long userId;
- private String otherType;
- private String path;
- private String bucket;
- private String fyunType;
- private Integer sourceId;
- private Integer isObj;
- }
|