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.
35 lines
547 B
Java
35 lines
547 B
Java
package com.glxp.api.res.inv;
|
|
|
|
import com.glxp.api.entity.inv.InvCountOrderDetailEntity;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 盘点单据详情实体类
|
|
*/
|
|
@Data
|
|
public class InvCountOrderDetailResponse extends InvCountOrderDetailEntity {
|
|
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
private String productName;
|
|
|
|
/**
|
|
* 规格型号
|
|
*/
|
|
private String ggxh;
|
|
|
|
/**
|
|
* 注册/备案凭证号
|
|
*/
|
|
private String zczbhhzbapzbh;
|
|
|
|
/**
|
|
* 生产厂家
|
|
*/
|
|
private String ylqxzcrbarmc;
|
|
|
|
private String measname;
|
|
|
|
}
|