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.
42 lines
620 B
Java
42 lines
620 B
Java
package com.glxp.api.req.inout;
|
|
|
|
import com.glxp.api.entity.inout.PurReceiveEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class UpdateReceiveDetailRequest {
|
|
|
|
private Integer id;
|
|
|
|
/**
|
|
* 订单外键
|
|
*/
|
|
private String orderIdFk;
|
|
|
|
/**
|
|
* 产品ID
|
|
*/
|
|
private Integer relIdFk;
|
|
|
|
private String nameCode;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
private Integer count;
|
|
|
|
/**
|
|
* 供应商ID
|
|
*/
|
|
private String supId;
|
|
|
|
private String productDate;
|
|
|
|
private String batchNo;
|
|
|
|
private String expireDate;
|
|
|
|
}
|