result.d.ts 1.1 KB
export interface Result<ResultType> {
  code: number
  message: string
  result: ResultType
  success: boolean
  timestamp: number
}

export interface PageListType<PageListItemType> {
  records: PageListItemType[]
  current: number
  total: number
  size: number
}

export interface PhoneCodeLoginType {
  im_token: string
  userId: string
  token: string
}

export interface ConsultationOrderRecordsType {
  id: string;
  order_no: string;
  petId: string;
  petName: string;
  petClass: string;
  petType: number;
  petSec: number;
  isSterilization: number;
  isAgain: number;
  age: number;
  weight: string;
  symptom: string;
  supplement: string;
  image: string[];
  remainder: number;
  consultationState: number;
  consultationWay: number;
  immuneStatus: string;
  feedType: string;
  batheFrequency: string;
  timeFrame: string;
  payAmount: number;
  realityPayAmount: number;
  payTime: string;
  amount: number;
  prescriptionForm: string;
  prescriptionFile: string;
  award: number;
  user: User;
  doctor: Doctor;
  time: string;
  consultationay: number;
  orderState: number;
  effect_award: number;
}