44323
2023-09-20 5771c822e99c38f0484559f1f68843979f0df24b
cloud-server-other/src/main/java/com/dsh/other/entity/Banner.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.models.auth.In;
import lombok.Data;
import java.util.Date;
@@ -50,4 +51,34 @@
     */
    @TableField("insertTime")
    private Date insertTime;
    /**
     * 跳转模块
     */
    @TableField("model")
    private String model;
    /**
     * 广告名称
     */
    @TableField("name")
    private String name;
    /**
     * 跳转类型
     */
    @TableField("type")
    private String type;
    /**
     * 跳转类型
     */
    @TableField("turnId")
    private String turnId;
    /**
     * 跳转页面id
     */
    @TableField("pageId")
    private Integer pageId;
    /**
     * 跳转类型id
     */
    @TableField("typeId")
    private Integer typeId;
}