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
| package com.ruoyi.shop.util.dto;
|
| import lombok.Data;
|
| /**
| * @ClassName EncryptedCertificateItem
| * @Description TODO
| * @Author jqs
| * @Date 2023/6/19 14:12
| * @Version 1.0
| */
| @Data
| public class EncryptedCertificateItem {
|
| //加密的平台证书序列号
| private String algorithm;
|
| //加密的平台证书序列号
| private String nonce;
|
| //证书弃用时间
| private String associated_data;
|
| //证书弃用时间
| private String ciphertext;
| }
|
|