patient.d.ts 533 B

12345678910111213141516171819202122
  1. declare namespace App.Patient {
  2. interface Model {
  3. patientId: number;
  4. name: string;
  5. age: number;
  6. sex: 0 | 1 | 2;
  7. height?: number;
  8. weight?: number;
  9. drinkState?: 'Y' | 'N';
  10. smokeState?: 'Y' | 'N';
  11. womenSpecialPeriod?: { label: string; value: string; }[];
  12. foodAllergy?: { label: string; value: string; }[];
  13. hobbyFlavor?: { label: string; value: string; }[];
  14. job?: { label: string; value: string; }[];
  15. address?: { name: string; code: string }[];
  16. detailAddress?: string;
  17. }
  18. }