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.
17 lines
402 B
Java
17 lines
402 B
Java
package com.glxp.api.res.sync;
|
|
|
|
import com.glxp.api.entity.purchase.PurOrderDetailEntity;
|
|
import com.glxp.api.entity.purchase.PurOrderEntity;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
//同步业务单据相关
|
|
@Data
|
|
public class SpsSyncBusOrderResponse extends BaseSyncResponse {
|
|
|
|
private List<PurOrderEntity> purOrderEntities;
|
|
private List<PurOrderDetailEntity> purOrderDetailEntities;
|
|
|
|
}
|