mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-08-08 09:12:42 +08:00
58 lines
1.2 KiB
Java
58 lines
1.2 KiB
Java
package com.ics.admin.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.ics.common.core.domain.BaseEntity;
|
|
import com.ics.common.core.domain.IcsCustomerStaff;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 智能房间对象 tb_wisdom_room
|
|
*
|
|
* @author ics
|
|
* @date 2024-08-21
|
|
*/
|
|
@Data
|
|
@TableName("tb_wisdom_room")
|
|
public class WisdomRoom extends BaseEntity<WisdomRoom> {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 类型(会议室、办公室、茶室、路演厅) */
|
|
private String type;
|
|
|
|
/** 名称 */
|
|
private String meetingName;
|
|
|
|
/** 开始时间 */
|
|
private Date startTime;
|
|
|
|
/** 结束时间 */
|
|
private Date endDate;
|
|
|
|
/** 金额备注 */
|
|
private String remake;
|
|
|
|
private String img;
|
|
|
|
/** 园区ID */
|
|
private Long parkId;
|
|
|
|
@TableField(exist = false)
|
|
private List<Long> staffId;
|
|
|
|
@TableField(exist = false)
|
|
private Integer deviceNum;
|
|
|
|
@TableField(exist = false)
|
|
private Integer panelNum;
|
|
|
|
|
|
@TableField(exist = false)
|
|
private List<IcsCustomerStaff> staffLists;
|
|
|
|
@TableField(exist = false)
|
|
private Long staffIds;
|
|
}
|