1
2
3
4
5
6
7
8
9
10
11
12
| package cc.mrbird.febs.dapp.vo;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "AdminPlanSetVo", description = "挂机时间规则")
| public class AdminPlanSetVo {
| private String maxHours;
| private String startTime;
| private String endTime;
| }
|
|