From af72562af10fb4a9de63d281f289177b3e3486f9 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Fri, 24 Nov 2023 15:56:09 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E5=AE=9E=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../standard/entity/LawsStandardFile.java | 103 ------------------ .../service/ILawsStandardFileService.java | 2 - 2 files changed, 105 deletions(-) delete mode 100644 laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsStandardFile.java diff --git a/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsStandardFile.java b/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsStandardFile.java deleted file mode 100644 index c2fa9c68..00000000 --- a/laws-modules/src/main/java/com/jero/modules/laws/standard/entity/LawsStandardFile.java +++ /dev/null @@ -1,103 +0,0 @@ -package com.jero.modules.laws.standard.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; -import java.io.Serializable; -import java.util.Date; - -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.EqualsAndHashCode; -import lombok.experimental.Accessors; - -/** - * - * @TableName laws_standard_file - */ -@Data -@TableName("laws_standard_file") -@Accessors(chain = true) -@EqualsAndHashCode(callSuper = false) -@ApiModel(value="laws_standard_file对象", description="标准文件") -public class LawsStandardFile implements Serializable { - /** - * 主键ID - */ - @TableId(type = IdType.ASSIGN_ID) - @ApiModelProperty(value = "主键ID") - private String id; - - /** - * 创建人 - */ - @ApiModelProperty(value = "创建人") - private String createBy; - - /** - * 创建时间 - */ - @ApiModelProperty(value = "创建时间") - private Date createTime; - - /** - * 更新人 - */ - @ApiModelProperty(value = "更新人") - private String updateBy; - - /** - * 更新时间 - */ - @ApiModelProperty(value = "更新时间") - private Date updateTime; - - /** - * 所属部门 - */ - @ApiModelProperty(value = "所属部门") - private String orgCode; - - /** - * 标准编号 - */ - @ApiModelProperty(value = "标准编号") - private String standardNo; - - /** - * 文件id - */ - @ApiModelProperty(value = "文件id") - private String fileId; - - /** - * 文件类型 发布稿/修改单/报批稿 - */ - @ApiModelProperty(value = "文件类型 发布稿/修改单/报批稿") - private String fileType; - - /** - * 所属模块编码 - */ - @ApiModelProperty(value = "所属模块编码") - private String moduleCode; - - /** - * 文件名 - */ - @TableField(exist = false) - @ApiModelProperty(value = "文件名") - private String fileName; - - /** - * 真实存储的文件名 - */ - @TableField(exist = false) - @ApiModelProperty(value = "真实存储的文件名") - private String fileDiskName; - - @TableField(exist = false) - private static final long serialVersionUID = 1978687668756786786L; -} \ No newline at end of file diff --git a/laws-modules/src/main/java/com/jero/modules/laws/standard/service/ILawsStandardFileService.java b/laws-modules/src/main/java/com/jero/modules/laws/standard/service/ILawsStandardFileService.java index 54ed9570..4a6a553d 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/standard/service/ILawsStandardFileService.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/standard/service/ILawsStandardFileService.java @@ -1,7 +1,5 @@ package com.jero.modules.laws.standard.service; -import com.jero.modules.laws.standard.entity.LawsStandardFile; -import com.baomidou.mybatisplus.extension.service.IService; import com.jero.modules.oss.entity.OSSFile; import com.jero.modules.tag.entity.LawsTag;