value
2024-05-01 e706cc37a9643f2aac1791e45e30817ebcb564ae
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
28
29
30
31
32
33
34
35
36
37
38
39
package com.yuanchu.mom.dto;
 
import com.yuanchu.mom.annotation.ValueTableShow;
import com.yuanchu.mom.pojo.InsOrder;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author gaoaoy
 * @version 1.0.0
 * @create 2024/3/14 18:46
 **/
@Data
public class SampleOrderDto extends InsOrder {
 
    @ValueTableShow(5)
    @ApiModelProperty("检验对象")
    private String sampleType;
 
    @ValueTableShow(6)
    @ApiModelProperty("样品名称")
    private String sampleName;
 
    @ValueTableShow(6)
    @ApiModelProperty("样品型号")
    private String sampleModel;
 
    @ValueTableShow(6)
    @ApiModelProperty("样品编号")
    private String sampleCode;
 
    @ValueTableShow(7)
    @ApiModelProperty("检验进度%")
    private String insProgress;
 
    @ApiModelProperty("报告id")
    private String reportId;
 
}