Air
2024-11-04 cb3b3801255082c53145bd752230339eae5d3e5a
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.nova.sankuai.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2021/11/12
 */
@Data
@ApiModel(value = "APP免审记录")
public class AppAudit {
 
    @ApiModelProperty(value = "主键")
    @TableId
    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链接 对应type=0的数据")
    private String content0;
 
    @ApiModelProperty(value = "url链接 对应type=1的数据")
    private String content1;
 
    @ApiModelProperty(value = "公钥")
    private String publicKey;
 
    @ApiModelProperty(value = "ocrId")
    private String ocrId;
 
    @ApiModelProperty(value = "ocr密码")
    private String ocrSecret;
 
    @ApiModelProperty(value = "ocr许可证")
    private String ocrLicense;
 
    @ApiModelProperty(value = "备注")
    private String notes;
 
}