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.
28 lines
543 B
Java
28 lines
543 B
Java
package com.glxp.api.req.inout;
|
|
|
|
import com.glxp.api.entity.inout.IoCodeEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@Data
|
|
public class AddOrderChangeRequest {
|
|
|
|
private String corpOrderId;
|
|
private String mainAction;
|
|
private String action;
|
|
private String fromCorp;
|
|
private String fromDeptCode;
|
|
private String fromInvCode;
|
|
private Integer fromType;
|
|
private String actDate;
|
|
private String deptCode;
|
|
private String invCode;
|
|
private String orderId;
|
|
|
|
private List<IoCodeEntity> products;
|
|
|
|
|
|
}
|