params.d.ts 989 字节
export interface PhoneCodeLoginParamsType {
  phoneNum: string
  code: string
}

export interface Send_prescription_formType {
  /**
   * 处方药
   */
  drugList: DrugList[];
  // drugList: any;
  /**
   * 问诊订单id
   */
  id?: string;
  /**
   * 处方单金额
   */
  prescriptionAmount: number;
  /**
   * 处方单文件
   */
  prescriptionFile?: string;
  /**
   * 问诊病情描述
   */
  prescriptionForm: string;
  [property: string]: any;
}

export interface DrugList {
  /**
   * 单价
   */
  amount: string;
  /**
   * 说明
   */
  des: string;
  /**
   * 药物名称
   */
  name: string;
  /**
   * 数量
   */
  num: string;
  [property: string]: any;
}
export interface PageListParamsType {
  /**
   * 订单状态 20-待问诊  30-问诊中 40-问诊结束 50-已取消
   */
  orderState?: number | string;
  /**
   * 页数
   */
  pageNo: number | string;
  /**
   * 每页显示条数
   */
  pageSize?: number | string;
  [property: string]: any;
}