From 1359856950c65775a75f9593897a760dbb919166 Mon Sep 17 00:00:00 2001 From: zhang xu <2125563902@qq.com> Date: Sat, 11 May 2024 21:01:25 +0800 Subject: [PATCH] =?UTF-8?q?text:(=E8=BF=9E=E6=8E=A5=E6=B1=A0=20javacomp)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/zx/domain/AssetAccredit.java | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 muyu-modules/muyu-etl/muyu-etl-common/src/main/java/com/zx/domain/AssetAccredit.java diff --git a/muyu-modules/muyu-etl/muyu-etl-common/src/main/java/com/zx/domain/AssetAccredit.java b/muyu-modules/muyu-etl/muyu-etl-common/src/main/java/com/zx/domain/AssetAccredit.java new file mode 100644 index 0000000..16795d6 --- /dev/null +++ b/muyu-modules/muyu-etl/muyu-etl-common/src/main/java/com/zx/domain/AssetAccredit.java @@ -0,0 +1,94 @@ +package com.zx.domain; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import lombok.experimental.SuperBuilder; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.muyu.common.core.annotation.Excel; +import com.muyu.common.core.web.domain.BaseEntity; + +/** + * 【请填写功能名称】对象 asset_accredit + * + * @author ruoyi + * @date 2024-04-25 + */ +@SuperBuilder +@Data +@AllArgsConstructor +@NoArgsConstructor +public class AssetAccredit extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** $column.columnComment */ + private Long id; + + /** 部门id */ + @Excel(name = "部门id") + private Long deptId; + + /** 数据表id */ + @Excel(name = "数据表id") + private Long dataAssetId; + + + /** 用户id */ + @Excel(name = "用户id") + private Long userId; + + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setDeptId(Long deptId) + { + this.deptId = deptId; + } + + public Long getDeptId() + { + return deptId; + } + public void setDataAssetId(Long dataAssetId) + { + this.dataAssetId = dataAssetId; + } + + public Long getDataAssetId() + { + return dataAssetId; + } + public void setUserId(Long userId) + { + this.userId = userId; + } + + public Long getUserId() + { + return userId; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("deptId", getDeptId()) + .append("dataAssetId", getDataAssetId()) + .append("userId", getUserId()) + .append("remark", getRemark()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .toString(); + } +}