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.
20 lines
414 B
Java
20 lines
414 B
Java
package com.glxp.api.req.purchase;
|
|
|
|
|
|
import com.glxp.api.entity.purchase.PurApplyDetailEntity;
|
|
import com.glxp.api.entity.purchase.PurApplyEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class PostPurApplyRequest {
|
|
|
|
Integer type;
|
|
int editStatus;
|
|
PurApplyEntity purApplyEntity;
|
|
List<PurApplyDetailEntity> purApplyDetailEntities;
|
|
// List<StockOrderDetailEntity> subErpOrders;
|
|
|
|
}
|