type.ts 883 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. export interface AreaVO {
  2. name : string,
  3. code : number,
  4. center ?: [number, number]
  5. }
  6. export interface CfStatusVO {
  7. statusList: any[];
  8. }
  9. export interface CfLogisticsVO {
  10. cfList: any[];
  11. }
  12. interface Patient {
  13. hzxm: string;
  14. zjhm: string;
  15. }
  16. interface Doctor {
  17. nickname: string;
  18. }
  19. export interface RecipeContentVO {
  20. yljgmc: string; // 医疗机构名称
  21. patient: Patient; // 患者信息
  22. yncfbh: string; // 处方编号
  23. detail: any[]; // 处方详情
  24. cfts: string; // 处方特色
  25. fyfsyf: string; // 用法用量
  26. fyfslx: string; // 处方类型
  27. doctor: Doctor; // 医生信息
  28. createTime: string; // 创建时间
  29. }
  30. interface CfListDto {
  31. kfrq: string;
  32. }
  33. export interface BasicInfoVO {
  34. hzxm: string;
  35. hzsfzh: string;
  36. cfListDtos?: CfListDto[];
  37. }