chenrui
2025-04-02 ed29342061c29cc16e36b17ae61d7b97a4dcb884
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;
}