Interval.java 385 B

1234567891011121314
  1. package com.sqx.modules.firstLogin.service.impl;
  2. import java.time.LocalDateTime; /**
  3. * 内部辅助类:存储时间区间的起止时间
  4. */
  5. public class Interval {
  6. final LocalDateTime start;
  7. final LocalDateTime end;
  8. Interval(LocalDateTime start, LocalDateTime end) {
  9. this.start = start;
  10. this.end = end;
  11. }
  12. }