| | |
| | | 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 com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import java.util.Date; |
| | | |
| | | |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 位置(1=首页,2=首页底部,3=线上课得积分,4=看视频得奖励,5=常见问题) |
| | | * 位置(1=首页,2=线上课得积分,3=看视频得奖励,4=常见问题) |
| | | */ |
| | | @TableField("position") |
| | | private Integer position; |
| | |
| | | @TableField("img") |
| | | private String img; |
| | | /** |
| | | * 跳转页面 |
| | | * 跳转页面id |
| | | */ |
| | | @TableField("jumpPage") |
| | | private Integer jumpPage; |
| | |
| | | * 添加时间 |
| | | */ |
| | | @TableField("insertTime") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private Date insertTime; |
| | | /** |
| | | * 跳转模块 |
| | |
| | | @TableField("turnId") |
| | | private String turnId; |
| | | /** |
| | | * 跳转页面id |
| | | * 跳转页面 |
| | | */ |
| | | @TableField("page") |
| | | private String page; |
| | |
| | | @TableField("typeId") |
| | | private Integer typeId; |
| | | } |
| | | |