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.
36 lines
578 B
Java
36 lines
578 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class UpdateLevelDrugRequest {
|
|
|
|
private Long id;
|
|
/**
|
|
* 层级标识
|
|
*/
|
|
private String nameCode;
|
|
/**
|
|
* 包装级别
|
|
*/
|
|
private Integer packLevel;
|
|
/**
|
|
* 包装层级
|
|
*/
|
|
private String packUnit;
|
|
/**
|
|
* 上级产品编码
|
|
*/
|
|
private String sjcpbm;
|
|
/**
|
|
* 下级产品编码
|
|
*/
|
|
private String bhxjcpbm;
|
|
/**
|
|
* 包含下级数量
|
|
*/
|
|
private Integer bhxjsl;
|
|
private Long relId;
|
|
private String uuid;
|
|
}
|