1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package jnpf.limsEntity;
|
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| public class LimsRetainDestructionReminderRow {
| private String id;
| private String tenantId;
| private String sampleName;
| private String sampleCode;
| private String batchNo;
| private String currentQuantity;
| private String unit;
| private String storageLocation;
| private Date retentionDeadline;
| }
|
|