liding
2025-03-28 9b5243a4eb50a6e034620f2fb9b2ffd6fb80820a
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;
}