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 purOrderDetailEntityList; // List subErpOrders; Integer type; boolean autoPurchase; String targetSubInv; String targetBillAction; String targetDeptCode; }