/** 七日预约率 */
export type AppointmentRate = {

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

  /** 预约率 */
  appointRate?: number;
};