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.
21 lines
491 B
Java
21 lines
491 B
Java
2 years ago
|
package com.glxp.api.req.purchase;
|
||
|
|
||
|
import com.glxp.api.entity.purchase.PurDeliveryDetailEntity;
|
||
|
import com.glxp.api.entity.purchase.PurDeliveryEntity;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class PostPurDeliveryRequest {
|
||
|
int editStatus;
|
||
|
PurDeliveryEntity purDeliveryEntity;
|
||
|
List<PurDeliveryDetailEntity> purDeliveryDetailEntities;
|
||
|
Integer type;
|
||
|
boolean autoPurchase;
|
||
|
String targetSubInv;
|
||
|
String targetBillAction;
|
||
|
String targetDeptCode;
|
||
|
|
||
|
}
|