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.
19 lines
389 B
Java
19 lines
389 B
Java
package com.glxp.api.req.purchase;
|
|
|
|
|
|
import com.glxp.api.entity.purchase.PurPlanDetailEntity;
|
|
import com.glxp.api.entity.purchase.PurPlanEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class PostPurPlanRequest {
|
|
|
|
int editStatus;
|
|
PurPlanEntity purPlanEntity;
|
|
List<PurPlanDetailEntity> purPlanDetailEntities;
|
|
// List<StockOrderDetailEntity> subErpOrders;
|
|
|
|
}
|