feat(order): 订单 API 类型补充 storeNo 字段

This commit is contained in:
DaxPay Dev
2026-07-15 14:36:31 +08:00
parent c1b156923f
commit 0d7bd6ad31
2 changed files with 8 additions and 0 deletions

View File

@@ -57,6 +57,8 @@ export interface NormalOrderQuery {
method?: string;
/** 支付产品 */
product?: string;
/** 门店号 */
storeNo?: string;
/** 创建时间-开始 */
createTimeStart?: string;
/** 创建时间-结束 */
@@ -109,6 +111,8 @@ export interface NormalOrderResult extends MchEntity {
clientIp?: string;
/** 终端设备编码 */
terminalNo?: string;
/** 门店号 */
storeNo?: string;
// ===== 资金凭证联表字段(详情) =====
/** 资金交易号 */
tradeNo?: string;

View File

@@ -53,6 +53,8 @@ export interface RefundOrderQuery {
status?: string;
/** 支付通道 */
channel?: string;
/** 门店号 */
storeNo?: string;
/** 创建时间-开始 */
createTimeStart?: string;
/** 创建时间-结束 */
@@ -105,6 +107,8 @@ export interface RefundOrderResult extends MchEntity {
product?: string;
/** 支付方式 */
method?: string;
/** 门店号 */
storeNo?: string;
/** 错误信息 */
errorMsg?: string;
}