package com.nova.sankuai.domain.vo; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @ApiModel(value = "新增App免审Vo") @Data public class AppAuditVo { @ApiModelProperty(value = "主键id") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long id; @ApiModelProperty(value = "忽略大小写 可用项:android ios") private String platform; @ApiModelProperty(value = "忽略大小写 应用平台名称 可用项:ios huawei oppo vivo mi tencent") private String source; @ApiModelProperty(value = "APP版本号") private String version; @ApiModelProperty(value = "忽略大小写 企业名称 可用项:antaijuhua beijingqingyue") private String company; @ApiModelProperty(value = "1: 免审开启(壳子开启)\\r\\n0:免审关闭(壳子关闭)") private Integer type; @ApiModelProperty(value = "首页展示url链接") private String content; @ApiModelProperty(value = "url链接 对应type=0") private String content0; @ApiModelProperty(value = "url链接 对应type=1") private String content1; @ApiModelProperty(value = "备注") private String notes; }