1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package org.jeecg.modules.lims.testing.vo;
|
| import lombok.Data;
| import org.jeecg.modules.lims.testing.entity.LimsTestingBatch;
|
| /**
| *
| */
| @Data
| public class LimsTestingBatchVo extends LimsTestingBatch {
| //产品名称
| private String prodName;
| //技术标准名称
| private String standName;
| //完成进度
| private Double progress;
| //检测条目总数
| private Integer batchDetailTotal;
| //检测条目完成数
| private Integer batchDetailFinish;
|
| }
|
|