/** 门诊量趋势 */
export interface OutpatientTrend {

  /** 月份 */
  month?: string;

  /** 月份的值 */
  value?: number;

}