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.
32 lines
737 B
Java
32 lines
737 B
Java
package com.glxp.api.res.inout;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class IoCodeRelResponse {
|
|
|
|
|
|
private String id;
|
|
private String code;
|
|
private String parentCode;
|
|
private String nameCode;
|
|
private Byte diType;
|
|
private String mainNameCode;
|
|
private String level;
|
|
private String produceDate;
|
|
private String expireDate;
|
|
private String serialNo;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
private String cpmctymc;
|
|
private String ggxh;
|
|
private String measname;
|
|
private String manufactory;
|
|
|
|
}
|