提交修改

This commit is contained in:
quyixiao 2025-11-14 21:47:42 +08:00
parent c25b465673
commit f5d98cb24d
2 changed files with 11 additions and 12 deletions

View File

@ -33,7 +33,7 @@ public class VVOrderRequest {
//总价
private BigDecimal maxSalePrice;
//wait_pay:待支付,待发货wait_shipping, 已经发货: shipping , 已接收delivered
//
private String status;
// 结算状态
@ -64,27 +64,25 @@ public class VVOrderRequest {
private Long buyerId;
/***
* 逆向状态 状态
* close 取消
* wait_seller_agree 等待卖家同意 ,
* wait_buyer_post 等待买家寄东西,
* shipping 运送中, delivered 妥投,
* reject_delivered 拒绝妥投,
* agree_refunded 同意退款 ,
* refunded 退款完成
* close 退款关闭
*
*/
private String reverseStatus;
/**
*
* 时间排序
* 按创建时间排序 , ASC 升序 ,DESC 降序
*/
private String createTimestampSort;
/**
*
* 按修改时间排序 , ASC 升序 ,DESC 降序
*/
private String modifyTimestampSort;
}

View File

@ -62,6 +62,7 @@ public class AppCommentController {
/***
* 列表
* http://localhost:8888/app/comment/list
*/
@RequestMapping("/list")
@Describe("评论列表")