判断是否是同一天
bool isSameDay(DateTime d2) { return this?.year == d2.year && this?.month == d2.month && this?.day == d2.day; }