enum CalendarType { day(1, '日'), week(2, '周'), month(3, '月'); final int code; final String description; const CalendarType(this.code, this.description); }