|
@@ -0,0 +1,42 @@
|
|
|
+package com.raycos.raycoscommon.Internal.datacenterapi.vo.order;
|
|
|
+
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
+
|
|
|
+/**
|
|
|
+ * ordersOVO
|
|
|
+ * 订单查询V0 对象
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@AllArgsConstructor
|
|
|
+@NoArgsConstructor
|
|
|
+public class Orders0VOReq {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公司id
|
|
|
+ */
|
|
|
+ private String companyId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 外部系统ID
|
|
|
+ */
|
|
|
+ private String externalSystemId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指定要查询的订单创建时间的起始日期(IS0 8601 格式)
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private String createdAfter;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指定要查询的订单创建时间的结束日期(ISO 8601 格式)
|
|
|
+ */
|
|
|
+ private String createdBefore;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 一个或多个订单状态(如 Unshipped,Partiallyshipped,Shipped,Canceled,Unfulfillable).
|
|
|
+ */
|
|
|
+ private String orderStatuses;
|
|
|
+
|
|
|
+}
|