Files
Vetti-Service-new/vetti-hotakes/src/main/java/com/vetti/hotake/domain/HotakeMeetingCalendarInfo.java

63 lines
1.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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