会议记录和面试记录的逻辑初始化
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
package com.vetti.hotake.domain;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* 会议日历记录主对象 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;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user