package com.panzhihua.common.model.dtos.advertisement;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 跳转内容
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2020-12-28 15:49
|
**/
|
@Data
|
@ApiModel(value = "跳转内容")
|
public class ComOpsAdvJumpDTO {
|
|
@ApiModelProperty("id")
|
private Long id;
|
|
@ApiModelProperty("跳转内容")
|
private String jumpContent;
|
|
@ApiModelProperty("是否默认 0 否 1 是")
|
private Integer isDefault;
|
|
}
|