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
package com.ruoyi.process.dto;
 
import com.ruoyi.process.pojo.InspectionOrder;
import com.ruoyi.process.pojo.InspectionOrderDetail;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @Author zhuo
 * @Date 2024/12/9
 */
@Data
public class InspectionOrderDto extends InspectionOrder {
 
    @ApiModelProperty("委托检验单详情")
    private List<InspectionOrderDetail> orderDetailList;
 
    @ApiModelProperty("关联状态:0未绑定,1已绑定")
    private Integer bindingStatus;
 
    @ApiModelProperty("成品下单状态")
    private Integer orderState;
 
    @ApiModelProperty("检验进度")
    private String insProgress;
 
    @ApiModelProperty("检验结果")
    private Integer insResult;
 
    @ApiModelProperty("报告状态:0未生成,1待同步,2可下载")
    private Integer reportStatus;
}