You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
698 B
Java
33 lines
698 B
Java
package com.glxp.api.entity.basic;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author 彭于晏
|
|
* @date 2020/9/22.
|
|
*/
|
|
@Data
|
|
public class UdiEntity {
|
|
|
|
|
|
private String code;
|
|
private String batchNo;
|
|
private String produceDate;
|
|
private String expireDate;
|
|
private String serialNo;
|
|
private String udi;
|
|
|
|
private Integer productType;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "UdiEntity{" +
|
|
"batchNo='" + batchNo + '\'' +
|
|
", produceDate='" + produceDate + '\'' +
|
|
", expireDate='" + expireDate + '\'' +
|
|
", serialNo='" + serialNo + '\'' +
|
|
", udi='" + udi + '\'' +
|
|
'}';
|
|
}
|
|
}
|