lyh
2025-06-23 4d6cf92e30c2c7f81f8cc31dfb7559a745782ec1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
    private String overtimeStartTime;
    private String overtimeEndTime;
}