huangtf 2 vuotta sitten
vanhempi
commit
bc24ba4660

+ 61 - 0
blade-service-api/blade-business-api/src/main/java/org/springblade/business/entity/ArchiveFile.java

@@ -145,5 +145,66 @@ public class ArchiveFile extends BaseEntity {
      */
     @ApiModelProperty("电签pdf文件")
     private String eVisaFile;
+	/**
+	* 文件归属的扩展节点ID
+	*/
+		private Long nodeExtId;
+	/**
+	* 文件类型
+	*/
+		private Long fileType;
+	/**
+	* 归属案卷ID
+	*/
+		private Long archiveId;
+	/**
+	* 原始归属案卷ID ,用于拆卷
+	*/
+		private Long originId;
+	/**
+	* 拍摄时间
+	*/
+		private LocalDateTime filmingTime;
+	/**
+	* 实际拍摄时间
+	*/
+		private LocalDateTime filmingorTime;
+	/**
+	* 媒体分类
+	*/
+		private String tagId;
+	/**
+	* 相片号
+	*/
+		private String picCode;
+	/**
+	* 参见号
+	*/
+		private String referCode;
+	/**
+	* 底片号
+	*/
+		private String filmCode;
+	/**
+	* 图片宽
+	*/
+		private Integer width;
+	/**
+	* 图片高
+	*/
+		private Integer height;
+	/**
+	* 同步时间,用于同步
+	*/
+		private LocalDateTime ftime;
+	/**
+	* 更新时间,用于同步
+	*/
+		private LocalDateTime utime;
+	/**
+	* 删除时间
+	*/
+		private LocalDateTime delTime;
+
 
 }

+ 15 - 0
blade-service/blade-business/src/main/java/org/springblade/business/mapper/ArchiveFileMapper.xml

@@ -31,6 +31,21 @@
         <result column="drawing_no" property="drawingNo"/>
         <result column="cite_change_number" property="citeChangeNumber"/>
         <result column="e_visa_file" property="eVisaFile"/>
+        <result column="node_ext_id" property="nodeExtId"/>
+        <result column="file_type" property="fileType"/>
+        <result column="archive_id" property="archiveId"/>
+        <result column="origin_id" property="originId"/>
+        <result column="filming_time" property="filmingTime"/>
+        <result column="filmingor_time" property="filmingorTime"/>
+        <result column="tag_id" property="tagId"/>
+        <result column="pic_code" property="picCode"/>
+        <result column="refer_code" property="referCode"/>
+        <result column="film_code" property="filmCode"/>
+        <result column="width" property="width"/>
+        <result column="height" property="height"/>
+        <result column="ftime" property="ftime"/>
+        <result column="utime" property="utime"/>
+        <result column="del_time" property="delTime"/>
     </resultMap>
     <update id="recoveryByIds">
         update u_archive_file set is_deleted = 0 where