Format when time is in hours
@override String hours(int hours) { if (hours == 1) { return '1 小时'; } else if (hours > 1 && hours < 11) { return '~$hours小时'; } else { return '$hours小时'; } }