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;
|
}
|