package com.yeshi.fanli.util.goods.douyin.vo;
|
|
import com.yeshi.fanli.entity.dy.DYOrder;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: DYOrderResult
|
* @description: TODO
|
* @date 2022/9/30 16:15
|
*/
|
public class DYOrderResult {
|
|
private String cursor;
|
private List<DYOrder> orders;
|
|
public String getCursor() {
|
return cursor;
|
}
|
|
public void setCursor(String cursor) {
|
this.cursor = cursor;
|
}
|
|
public List<DYOrder> getOrders() {
|
return orders;
|
}
|
|
public void setOrders(List<DYOrder> orders) {
|
this.orders = orders;
|
}
|
}
|