All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.wslxm.springbootplus2.manage.sys.model.entity.SysBanner Maven / Gradle / Ivy

The newest version!
package io.github.wslxm.springbootplus2.manage.sys.model.entity;

import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.github.wslxm.springbootplus2.core.base.model.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.ToString;

/**
 * banner表
 * 

* ::本代码由[兮家小二]提供的代码生成器生成,如有问题,请手动修改 ::作者CSDN:https://blog.csdn.net/qq_41463655 *

* @author wangsong * @email [email protected] * @date 2020-08-23 23:14:01 */ @Data @ToString(callSuper = true) @TableName("t_sys_banner") @ApiModel(value = "SysBanner 对象", description = "banner表") public class SysBanner extends BaseEntity { private static final long serialVersionUID = 0L; @ApiModelProperty(notes = "banner位置(字典code) " ) @TableField(value = "position") private Integer position; @ApiModelProperty(notes = "banner标题" ) @TableField(value = "`name`") private String name; @ApiModelProperty(notes = "banner描叙" ) @TableField(value = "`desc`") private String desc; @ApiModelProperty(notes = "banner图片" ) @TableField(value = "img_url") private String imgUrl; @ApiModelProperty(notes = "banner排序" ) @TableField(value = "`sort`") private Integer sort; @ApiModelProperty(notes = "banner禁用(0-启用 1-禁用)" ) @TableField(value = "`disable`") private Integer disable; @ApiModelProperty(notes = "是否跳转(0-无 1-内部链接 2-外部链接)" ) @TableField(value = "is_skip") private Integer isSkip; @ApiModelProperty(notes = "跳转地址url(地址直接添加或字典表配置)" ) @TableField(value = "skip_url") private String skipUrl; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy