/* * @Author: huyang huyang@myun.info * @Date: 2023-01-07 14:59:32 * @LastEditors: zcxb chen13157379235@outlook.com * @LastEditTime: 2023-03-31 15:28:53 * @FilePath: /easy-front-core-sdk/packages/jos/src/entity/SupplierDTO.ts * @Description: * * Copyright (c) 2023 by huyang huyang@myun.info, All Rights Reserved. */ export namespace Dropship { export namespace Dps { export class SearchAllOrdersDTO { pageSize?: number page?: number beginDate?: string endDate?: string modifiedBeginDate?: string modifiedEndDate?: string } export class SearchSingleOrderDTO { customOrderId: string } export class DeliveryDTO { customOrderId: number carrierId: number carrierBusinessName: string shipNo: string estimateDate: string carrierPhone?: string } } } export namespace Ediws { export namespace Ro { export class RefundInfoListDTO { applyEndTime: string pageIndex: number loginName?: string pageSize: number outNo?: number refundId?: number applyBeginTime: string status?: number vendorCode: string } } } export namespace Vc { export namespace Item { export class ProductGetDTO { wareId?: string } export class PrimaryPicGetDTO { ware_id: string } } export class GetPurchaseOrderListDTO { created_date_start: string created_date_end: string deliver_center_id?: number status?: number is_ept_customized?: boolean page_index: number page_size: number orderIds?: number[] wareIds?: number[] states?: number[] confirmStates?: number[] } }