package com.nova.sankuai.domain.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@ApiModel(value = "修改App免审Dto")
|
@Data
|
public class UpdateAppAudit {
|
|
@ApiModelProperty(value = "主键id")
|
private Long id;
|
|
@ApiModelProperty(value = "忽略大小写 可用项:android ios")
|
@NotNull(message = "系统不能为空")
|
private String platform;
|
|
@ApiModelProperty(value = "忽略大小写 应用平台名称 可用项:ios huawei oppo vivo mi tencent")
|
@NotNull(message = "应用平台名称不能为空")
|
private String source;
|
|
@ApiModelProperty(value = "APP版本号")
|
@NotNull(message = "版本号不能为空")
|
private String version;
|
|
@ApiModelProperty(value = "忽略大小写 企业名称 可用项:antaijuhua beijingqingyue")
|
@NotNull(message = "企业名称不能为空")
|
private String company;
|
|
@ApiModelProperty(value = "1: 免审开启(壳子开启)\\r\\n0:免审关闭(壳子关闭)")
|
private Integer type;
|
|
@ApiModelProperty(value = "url链接", example = "null")
|
private String content;
|
|
@ApiModelProperty(value = "备注")
|
private String notes;
|
|
}
|