获取指定年月日的节假日列表 @param ymd 年月日 @return 节假日列表
static List<Holiday> getHolidays(String ymd) { return findHolidaysForward(ymd.replaceAll('-', '')); }