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
254 B
Java
17 lines
254 B
Java
10 months ago
|
package com.glxp.api.req.collect;
|
||
|
|
||
|
import com.glxp.api.entity.collect.IoCollectOrder;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class PostCollectOrderRequest {
|
||
|
|
||
|
|
||
|
private String thirdSys;
|
||
|
List<IoCollectOrder> collectOrderList;
|
||
|
|
||
|
|
||
|
}
|