|
@@ -27,7 +27,7 @@ import lombok.experimental.Accessors;
|
|
|
@TableName("aa_poster")
|
|
|
@Accessors(chain = true)
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
-@ApiModel(value="aa_poster对象", description="海报管理")
|
|
|
+@ApiModel(value="aa_poster对象", description="页面资源管理")
|
|
|
public class AaPoster implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
@@ -36,21 +36,21 @@ public class AaPoster implements Serializable {
|
|
|
@ApiModelProperty(value = "id")
|
|
|
private String id;
|
|
|
/**海报名称*/
|
|
|
- @Excel(name = "海报名称", width = 15)
|
|
|
- @ApiModelProperty(value = "海报名称")
|
|
|
+ @Excel(name = "资源名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "资源名称")
|
|
|
private String name;
|
|
|
/**海报图*/
|
|
|
- @Excel(name = "海报图", width = 15)
|
|
|
+ @Excel(name = "资源连接", width = 15)
|
|
|
@ApiModelProperty(value = "海报图")
|
|
|
private String cover;
|
|
|
/**链接*/
|
|
|
- @Excel(name = "链接", width = 15)
|
|
|
+/* @Excel(name = "链接", width = 15)
|
|
|
@ApiModelProperty(value = "链接")
|
|
|
- private String link;
|
|
|
+ private String link;*/
|
|
|
/**权重*/
|
|
|
- @Excel(name = "权重", width = 15)
|
|
|
+/* @Excel(name = "权重", width = 15)
|
|
|
@ApiModelProperty(value = "权重")
|
|
|
- private Integer sort;
|
|
|
+ private Integer sort;*/
|
|
|
/**创建时间*/
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|