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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.res.inv ;
import lombok.Data ;
/**
* 盘点单据详情实体类
*/
@Data
public class InvCountOrderDetailResponse {
/**
* id
*/
private Integer id ;
/**
* 盘点单号
*/
private String orderIdFk ;
/**
* 产品ID
*/
private Long relId ;
/**
* 产品DI
*/
private String nameCode ;
/**
* 批次号
*/
private String batchNo ;
/**
* 生产日期
*/
private String produceDate ;
/**
* 失效日期
*/
private String expireDate ;
/**
* 序列号
*/
private String serialNo ;
/**
* 盘点数量
*/
private Integer countNum ;
/**
* 账面数量
*/
private Integer invNum ;
/**
* 盘盈数量
*/
private Integer profitNum ;
/**
* 盘亏数量
*/
private Integer lossNum ;
/**
* 盈亏状态 0: 亏损 1: 盈利
*/
private Integer status ;
/**
* 产品名称
*/
private String productName ;
/**
* 规格型号
*/
private String ggxh ;
/**
* 注册/备案凭证号
*/
private String zczbhhzbapzbh ;
/**
* 生产厂家
*/
private String ylqxzcrbarmc ;
}