6 changed files with 69 additions and 14 deletions
@ -0,0 +1,15 @@ |
|||||
|
package com.ccsens.cloudutil.bean.tall.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author 逗 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HolidaysDto { |
||||
|
@Data |
||||
|
public static class GetHolidays{ |
||||
|
private Long startTime; |
||||
|
private Long endTime; |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,18 @@ |
|||||
|
package com.ccsens.cloudutil.bean.tall.vo; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @author 逗 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HolidaysVo { |
||||
|
|
||||
|
@Data |
||||
|
public static class Holidays{ |
||||
|
private List<String> workday; |
||||
|
private List<String> nonWorkday; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue