63 lines
1.5 KiB
Java
63 lines
1.5 KiB
Java
package com.vetti.hotake.domain;
|
||
|
||
import com.vetti.common.core.domain.entity.SysUser;
|
||
import lombok.Data;
|
||
import lombok.experimental.Accessors;
|
||
import io.swagger.annotations.ApiModelProperty;
|
||
import com.vetti.common.annotation.Excel;
|
||
import com.vetti.common.core.domain.BaseEntity;
|
||
|
||
import java.util.List;
|
||
|
||
/**
|
||
* 会议日历记录主对象 hotake_meeting_calendar_info
|
||
*
|
||
* @author wangxiangshun
|
||
* @date 2025-11-09
|
||
*/
|
||
@Data
|
||
@Accessors(chain = true)
|
||
public class HotakeMeetingCalendarInfo extends BaseEntity
|
||
{
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/** 主键ID */
|
||
@ApiModelProperty("主键ID")
|
||
private Long id;
|
||
|
||
/** 用户ID */
|
||
@ApiModelProperty("用户ID")
|
||
@Excel(name = "用户ID")
|
||
private Long userId;
|
||
|
||
/** 公司名称 */
|
||
@ApiModelProperty("公司名称")
|
||
@Excel(name = "公司名称")
|
||
private String compName;
|
||
|
||
/** 会议名称 */
|
||
@ApiModelProperty("会议名称")
|
||
@Excel(name = "会议名称")
|
||
private String meetingName;
|
||
|
||
/** 会议日期 */
|
||
@ApiModelProperty("会议日期(年月日)")
|
||
@Excel(name = "会议日期")
|
||
private String meetingDate;
|
||
|
||
/** 会议时间 */
|
||
@ApiModelProperty("会议时间")
|
||
@Excel(name = "会议时间")
|
||
private String times;
|
||
|
||
/** 状态(0 取消,1 正常) */
|
||
@ApiModelProperty("状态(0 取消,1 正常)")
|
||
@Excel(name = "状态", readConverterExp = "0=,取=消,1,正=常")
|
||
private String status;
|
||
|
||
@ApiModelProperty("参会人员")
|
||
private List<HotakeMeetingCalendarDetail> calendarDetails;
|
||
|
||
|
||
}
|