From cfa7d0a90e7da9b52606ab8fca364fa5bddddcd4 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 28 八月 2025 20:14:15 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/2.0' into 2.0 --- cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java | 16 ++++++++++++---- 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java b/cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java index 6b3ff6f..ce1999d 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java +++ b/cloud-server-other/src/main/java/com/dsh/other/entity/HomeModule.java @@ -1,9 +1,6 @@ package com.dsh.other.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 com.baomidou.mybatisplus.annotation.*; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -29,6 +26,8 @@ @TableField("title") @ApiModelProperty("标题") private String title; + @TableField(exist = false) + private String name; /** * 置顶(0=否,1=是) */ @@ -86,4 +85,13 @@ */ @TableField("typeId") private Integer typeId; + /** + * 展示类型 1:横屏 2:竖屏 + */ + @TableField("displayType") + private Integer displayType; + + @TableField("storeId") + private Integer storeId; + } -- Gitblit v1.7.1