|
@@ -1,153 +0,0 @@
|
|
|
-package cn.com.qmth.examcloud.exchange.inner.api.request;
|
|
|
-
|
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
-
|
|
|
-import cn.com.qmth.examcloud.api.commons.exchange.FormRequest;
|
|
|
-
|
|
|
-/**
|
|
|
- * 类注释
|
|
|
- *
|
|
|
- * @author WANGWEI
|
|
|
- * @date 2018年11月27日
|
|
|
- * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
- */
|
|
|
-public class PutFileReq extends FormRequest {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 6724768358354616915L;
|
|
|
-
|
|
|
- private String siteId;
|
|
|
-
|
|
|
- private Long rootOrgId;
|
|
|
-
|
|
|
- private String rootOrgDomain;
|
|
|
-
|
|
|
- private Long userId;
|
|
|
-
|
|
|
- private String fileSuffix;
|
|
|
-
|
|
|
- private String relativePath;
|
|
|
-
|
|
|
- private MultipartFile file;
|
|
|
-
|
|
|
- /**
|
|
|
- * 扩展属性
|
|
|
- */
|
|
|
- private String ext1;
|
|
|
-
|
|
|
- /**
|
|
|
- * 扩展属性
|
|
|
- */
|
|
|
- private String ext2;
|
|
|
-
|
|
|
- /**
|
|
|
- * 扩展属性
|
|
|
- */
|
|
|
- private String ext3;
|
|
|
-
|
|
|
- /**
|
|
|
- * 扩展属性
|
|
|
- */
|
|
|
- private String ext4;
|
|
|
-
|
|
|
- /**
|
|
|
- * 扩展属性
|
|
|
- */
|
|
|
- private String ext5;
|
|
|
-
|
|
|
- public String getSiteId() {
|
|
|
- return siteId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSiteId(String siteId) {
|
|
|
- this.siteId = siteId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getRootOrgId() {
|
|
|
- return rootOrgId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRootOrgId(Long rootOrgId) {
|
|
|
- this.rootOrgId = rootOrgId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRootOrgDomain() {
|
|
|
- return rootOrgDomain;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRootOrgDomain(String rootOrgDomain) {
|
|
|
- this.rootOrgDomain = rootOrgDomain;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Long userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getFileSuffix() {
|
|
|
- return fileSuffix;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFileSuffix(String fileSuffix) {
|
|
|
- this.fileSuffix = fileSuffix;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRelativePath() {
|
|
|
- return relativePath;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRelativePath(String relativePath) {
|
|
|
- this.relativePath = relativePath;
|
|
|
- }
|
|
|
-
|
|
|
- public MultipartFile getFile() {
|
|
|
- return file;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFile(MultipartFile file) {
|
|
|
- this.file = file;
|
|
|
- }
|
|
|
-
|
|
|
- public String getExt1() {
|
|
|
- return ext1;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExt1(String ext1) {
|
|
|
- this.ext1 = ext1;
|
|
|
- }
|
|
|
-
|
|
|
- public String getExt2() {
|
|
|
- return ext2;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExt2(String ext2) {
|
|
|
- this.ext2 = ext2;
|
|
|
- }
|
|
|
-
|
|
|
- public String getExt3() {
|
|
|
- return ext3;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExt3(String ext3) {
|
|
|
- this.ext3 = ext3;
|
|
|
- }
|
|
|
-
|
|
|
- public String getExt4() {
|
|
|
- return ext4;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExt4(String ext4) {
|
|
|
- this.ext4 = ext4;
|
|
|
- }
|
|
|
-
|
|
|
- public String getExt5() {
|
|
|
- return ext5;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExt5(String ext5) {
|
|
|
- this.ext5 = ext5;
|
|
|
- }
|
|
|
-
|
|
|
-}
|