Sunshine
2024-11-04 177f10973fd9bc1f0930369bb086ad9f0053440c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
 
}