update 批量更新订单审核

This commit is contained in:
Guoqs
2026-02-04 14:47:22 +08:00
parent 1a1b72a469
commit 5f4dccc23b
7 changed files with 75 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
package com.jsowell.pile.dto;
import lombok.Data;
import java.util.List;
@Data
public class UpdateOrderReviewDTO {
/**
* 订单编号列表
*/
private List<String> orderCodeList;
/**
* 评价标记
*/
private String reviewFlag;
/**
* 站点编号
*/
private String stationId;
}