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.
27 lines
632 B
Java
27 lines
632 B
Java
package com.glxp.api.req.purchase;
|
|
|
|
|
|
import com.glxp.api.entity.purchase.PurOrderDetailEntity;
|
|
import com.glxp.api.entity.purchase.PurOrderEntity;
|
|
import com.glxp.api.entity.purchase.PurPlanDetailEntity;
|
|
import com.glxp.api.entity.purchase.PurPlanEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class PostPurOrderRequest {
|
|
|
|
int editStatus;
|
|
PurOrderEntity purOrderEntity;
|
|
List<PurOrderDetailEntity> purOrderDetailEntityList;
|
|
// List<StockOrderDetailEntity> subErpOrders;
|
|
Integer type;
|
|
boolean autoPurchase;
|
|
String targetSubInv;
|
|
String targetBillAction;
|
|
String targetDeptCode;
|
|
|
|
|
|
}
|