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.
30 lines
769 B
Java
30 lines
769 B
Java
2 years ago
|
package com.glxp.api.req.inout;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class AddOrderRequest {
|
||
|
private String corpOrderId;
|
||
|
private String code;
|
||
|
private String mainAction;
|
||
|
private String action;
|
||
|
private String fromCorp;
|
||
|
private String fromInvCode;
|
||
|
private String billType;
|
||
|
private String deptCode;
|
||
|
private String invCode;
|
||
|
private String orderId;
|
||
|
private Long customerId;
|
||
|
private boolean outChangeEnable;
|
||
|
private boolean ignoreExpire;
|
||
|
private boolean ignoreRecentExpire;
|
||
|
private boolean ignoreCode;
|
||
|
private boolean preCheck;
|
||
|
private String batchNo;
|
||
|
private String produceDate;
|
||
|
private String expireDate;
|
||
|
private String serialNo;
|
||
|
private boolean vailInv;
|
||
|
private boolean codeFillCheck;
|
||
|
}
|