Crunchy
2024-07-03 fcfbaa84f1fef87a958452ef83d82e140d8ddb59
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
package com.yuanchu.mom.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
@Data
public class StructureTestObjectData {
    @ExcelProperty(value = "场所")
    private String laboratoryId;
 
    @ExcelProperty(value = "检验对象")
    private String specimenName;
 
    @ExcelProperty(value = "检验对象(EN)")
    private String specimenNameEn;
 
    @ExcelProperty(value = "对象代号")
    private String code;
 
    @ExcelProperty(value = "产品名称")
    private String name;
 
    @ExcelProperty(value = "产品名称(EN)")
    private String nameEn;
}