1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.inspect.dto;
|
| import lombok.Data;
|
| @Data
| //保存检验内容传参
| public class SaveInsContextDto {
|
| //模板内容
| private String param;
| //当前模板id
| private Integer currentTable;
| //当前样品id
| private Integer sampleId;
| //当前订单id
| private Integer orderId;
| //子试验室
| private String sonLaboratory;
| }
|
|