|
@@ -0,0 +1,29 @@
|
|
|
+package cn.kdan.cloud.pdf.office.api.payment.dto;
|
|
|
+
|
|
|
+import lombok.*;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author ComPDFKit-WPH 2023/1/31
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ToString
|
|
|
+@Builder
|
|
|
+@NoArgsConstructor
|
|
|
+@AllArgsConstructor
|
|
|
+public class CreatOrderManualDTO {
|
|
|
+
|
|
|
+ private String appId;
|
|
|
+
|
|
|
+ private String productId;
|
|
|
+
|
|
|
+ private String tradeNo;
|
|
|
+
|
|
|
+ private BigDecimal price;
|
|
|
+
|
|
|
+ private String userId;
|
|
|
+
|
|
|
+ private String thirdTradeNo;
|
|
|
+
|
|
|
+}
|