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;
|
}
|