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

export interface Send_prescription_formType {
  /**
   * 处方药
   */
  drugList: DrugList[];
  /**
   * 问诊订单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;
}