摘要:
eq 就是 equal等于 ne 就是 not equal不等于 gt 就是 greater than大于 lt 就是 less than小于 ge 就是 greater than or equal 大于等于 le 就是 less than or equal 小于等于 in 就是 in 包含(数组) 阅读全文
摘要:
public class TimeUtil { /** * 获取一天中剩余的时间(秒数) */ public static Integer getDayRemainingTime() { Date now = new Date(); LocalDateTime midnight = LocalDat 阅读全文