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
| package org.springblade.modules.traceability.dto;
|
| import lombok.Data;
|
| /**
| * 溯源信息
| * @author zhongrj
| * @since 2022-06-30
| */
| @Data
| public class TraceabilityDTO {
|
| /**
| * 溯源码编号
| */
| private String code;
|
| /**
| * 溯源详情信息
| */
| private String remark;
|
| /**
| * 溯源二维码
| */
| private String qrcode;
| }
|
|