/** 手术量趋势 */
export type SurgicalQuantity = {

  /** 日期，yyyy-mm-dd */
  opeDate?: string;

  /** 手术量 */
  opeNumber?: string | number;
};