lius
2023-08-15 60ed77d0ff0981cdc91f7a0c19ac9b5f47b39865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
import org.jeecg.modules.mdc.entity.MdcDeviceCalendar;
 
/**
 * @author: LiuS
 * @create: 2023-04-10 11:20
 */
@Data
public class MdcDeviceCalendarVo extends MdcDeviceCalendar {
    private String shiftName;
    private String shiftSubName;
    private String startDate;
    private String endDate;
    private String sleepStartDate;
    private String sleepEndDate;
    private String isDaySpan;
    private String equipmentName;
//    private String equipmentId;
}