|
@@ -0,0 +1,21 @@
|
|
|
+package com.management.platform.entity.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class OtherTaskFileInfoVO {
|
|
|
+ @JsonIgnore
|
|
|
+ private Integer projectId;
|
|
|
+ private String projectName;
|
|
|
+ @JsonIgnore
|
|
|
+ private Integer taskId;
|
|
|
+ private String taskName;
|
|
|
+ @JsonIgnore
|
|
|
+ private String creatorId;//文件上传人id
|
|
|
+ private String creatorName;
|
|
|
+
|
|
|
+ private String documentName;
|
|
|
+ private String finalChargeId;
|
|
|
+ private String finalChargeName;
|
|
|
+}
|