Interface queryStoreOrderList<K>

Type Parameters

Hierarchy

  • queryStoreOrderList

Properties

conditions: {
    categoryTwoList?: string[];
    contactMobile?: string;
    contactName?: string;
    createdAtRange: [number, number];
    fulFillAtRange: [number, number];
    pageIndex: number;
    pageSize: number;
    status?: string;
    storeIdList?: string[];
}

条件

Type declaration

  • Optional categoryTwoList?: string[]

    二级类目

  • Optional contactMobile?: string

    购买人手机号

  • Optional contactName?: string

    购买人姓名

  • createdAtRange: [number, number]

    订单创建时间筛选

  • fulFillAtRange: [number, number]

    出团日期范围

  • pageIndex: number

    页面下标

  • pageSize: number

    页面条数

  • Optional status?: string

    状态

  • Optional storeIdList?: string[]

    门店列表

needBlocks: K

查询块

sort: {
    completedAt: "ASC" | "DESC";
    createdAt: "ASC" | "DESC";
    fulfillAt: "ASC" | "DESC";
    paidAt: "ASC" | "DESC";
}

排序

Type declaration

  • completedAt: "ASC" | "DESC"

    完结时间

  • createdAt: "ASC" | "DESC"

    订单创建时间

  • fulfillAt: "ASC" | "DESC"

    履约时间

  • paidAt: "ASC" | "DESC"

    订单支付时间

Generated using TypeDoc