lius
2023-07-31 6701732c08bb8e5a20c5d7c2deb69c760344013d
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;
}