|
@@ -1,94 +0,0 @@
|
|
|
-package com.qmth.themis.business.entity;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
-import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
-import com.qmth.themis.business.base.BaseEntity;
|
|
|
-import io.swagger.annotations.ApiModel;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-
|
|
|
-/**
|
|
|
- * <p>
|
|
|
- * 客户端下载管理
|
|
|
- * </p>
|
|
|
- *
|
|
|
- * @author wangliang
|
|
|
- * @since 2022-09-05
|
|
|
- */
|
|
|
-@ApiModel(value = "TBClientDownload对象", description = "客户端下载管理")
|
|
|
-public class TBClientDownload extends BaseEntity implements Serializable {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- @ApiModelProperty(value = "机构id")
|
|
|
- private Long orgId;
|
|
|
-
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- @ApiModelProperty(value = "附件id")
|
|
|
- private Long attachmentId;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "文件名称")
|
|
|
- private String name;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "是否启用,0:停用,1:启用")
|
|
|
- private Integer enable;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "更新人")
|
|
|
- @TableField(exist = false)
|
|
|
- private String updateName;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "附件路径")
|
|
|
- @TableField(exist = false)
|
|
|
- private String attachmentPath;
|
|
|
-
|
|
|
- public Long getOrgId() {
|
|
|
- return orgId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrgId(Long orgId) {
|
|
|
- this.orgId = orgId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getAttachmentId() {
|
|
|
- return attachmentId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAttachmentId(Long attachmentId) {
|
|
|
- this.attachmentId = attachmentId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getEnable() {
|
|
|
- return enable;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEnable(Integer enable) {
|
|
|
- this.enable = enable;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUpdateName() {
|
|
|
- return updateName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateName(String updateName) {
|
|
|
- this.updateName = updateName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAttachmentPath() {
|
|
|
- return attachmentPath;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAttachmentPath(String attachmentPath) {
|
|
|
- this.attachmentPath = attachmentPath;
|
|
|
- }
|
|
|
-}
|