From abdfbf6dabca15594ed57a1560bcfffecb0ac854 Mon Sep 17 00:00:00 2001 From: Fancy <Fancy.fx@outlook.com> Date: 星期一, 29 七月 2024 16:28:42 +0800 Subject: [PATCH] add number for product_log --- pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoPlt/PltProductFile.java | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoPlt/PltProductFile.java b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoPlt/PltProductFile.java index 9d6f9aa..fcfcdba 100644 --- a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoPlt/PltProductFile.java +++ b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoPlt/PltProductFile.java @@ -8,6 +8,7 @@ import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; +import com.dy.common.po.BaseEntity; import lombok.*; /** @@ -20,13 +21,13 @@ @ToString @NoArgsConstructor @AllArgsConstructor -public class PltProductFile implements Serializable { +public class PltProductFile implements BaseEntity { /** * */ @JSONField(serializeUsing= ObjectWriterImplToString.class) @TableId(type = IdType.AUTO) - private Long id; + public Long id; /** * 浜у搧瀹炰綋缂栧彿 @@ -48,4 +49,9 @@ @TableField(exist = false) public String webUrl; + @TableField(exist = false) + public String orgName; + @TableField(exist = false) + public String extName; + } \ No newline at end of file -- Gitblit v1.8.0