parent
90d7f8fa7a
commit
b9b813c33e
4 changed files with 83 additions and 5 deletions
@ -0,0 +1,31 @@ |
||||
package com.huoran.iasf.vo.req; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.*; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import javax.validation.constraints.NotNull; |
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* @描述:长页栏目拓展表 |
||||
* @作者: Rong |
||||
* @日期: 2022-08-09 |
||||
*/ |
||||
@Data |
||||
public class SysColumnLongRedisVO { |
||||
|
||||
|
||||
@TableId(type = IdType.AUTO) |
||||
@ApiModelProperty(value = "栏目id") |
||||
private Integer columnId; |
||||
|
||||
|
||||
@ApiModelProperty(value = "预览储存的整个页面的json") |
||||
private String json; |
||||
|
||||
|
||||
|
||||
} |
Loading…
Reference in new issue