jiangqs
2023-06-12 924242a73d62d247f7055ffd0dd86a2700757f5b
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
package com.ruoyi.shop.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @ClassName MerShopCertificateListVo
 * @description: TODO
 * @date 2023年05月07日
 * @version: 1.0
 */
@Data
public class MerShopCertificateListVo {
 
 
    @ApiModelProperty(value = "证书id")
    private Long cerId;
 
    @ApiModelProperty(value = "证书名字")
    private String cerName;
 
    @ApiModelProperty(value = "证书编号")
    private String cerNumber;
 
    @ApiModelProperty(value = "证书图片")
    private String cerPicture;
 
    @ApiModelProperty(value = "证书状态-1删除0待审核1审核通过2审核拒绝")
    private Integer cerStatus;
 
    @ApiModelProperty(value = "拒绝理由")
    private String refuseReason;
}