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.
24 lines
406 B
Java
24 lines
406 B
Java
7 months ago
|
package com.glxp.api.res.inout;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* @author AnthonyYwj
|
||
|
* @date 2024/12/6
|
||
|
*/
|
||
|
@Data
|
||
|
public class AddEnterCodeResponse {
|
||
|
|
||
|
private String code;
|
||
|
private String batchNo;
|
||
|
private String produceDate;
|
||
|
private String expireDate;
|
||
|
private String serialNo;
|
||
|
private String udi;
|
||
|
|
||
|
private Integer productType;
|
||
|
|
||
|
private String cpmctymc;
|
||
|
private String bzgg;
|
||
|
}
|