jiangqs
2023-08-06 431dde90aa20f7652092fc0bfa9e6a1a28b06b9f
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
package com.ruoyi.shop.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @ClassName MgtShopCertificatePageVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/6/12 16:14
 * @Version 1.0
 */
@Data
public class MgtShopCertificatePageVo {
 
    @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 Date createTime;
 
    @ApiModelProperty(value = "商户名称")
    private String shopName;
 
    @ApiModelProperty(value="店主姓名")
    private String shopownerName;
 
    @ApiModelProperty(value="店主联系方式")
    private String shopownerPhone;
}