Kaynağa Gözat

用户律师需求开发

ldz 1 ay önce
ebeveyn
işleme
7ffc5a4369

+ 30 - 0
alien-entity/src/main/java/shop/alien/entity/store/dto/PayStatusRequest.java

@@ -0,0 +1,30 @@
+package shop.alien.entity.store.dto;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+
+/**
+ * 支付状态更新请求对象
+ *
+ * @author system
+ * @since 2025-01-XX
+ */
+@Data
+@JsonInclude
+@ApiModel(value = "PayStatusRequest对象", description = "支付状态更新请求")
+public class PayStatusRequest implements Serializable {
+
+    @ApiModelProperty(value = "订单编号", required = true)
+    private String orderNumber;
+
+    @ApiModelProperty(value = "支付状态, 0:未支付, 1:已支付", required = true)
+    private Integer paymentStatus;
+
+    @ApiModelProperty(value = "订单状态, 0:待支付, 1:已支付, 2:进行中, 3:已完成, 4:已取消")
+    private Integer orderStatus;
+}
+