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.
24 lines
444 B
Java
24 lines
444 B
Java
2 years ago
|
package com.glxp.api.res.inv;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.math.BigDecimal;
|
||
|
|
||
|
@Data
|
||
|
public class IoOrderDetailStatRsponse {
|
||
|
|
||
|
|
||
|
private String mainAction;
|
||
|
private String orderIdFk;
|
||
|
private String bindRlFk;
|
||
|
private String nameCode;
|
||
|
private String batchNo;
|
||
|
private String coName;
|
||
|
private String spec;
|
||
|
private BigDecimal price;
|
||
|
private int reCount;
|
||
|
private String deptCode;
|
||
|
private String invCode;
|
||
|
|
||
|
}
|