会议记录和面试记录的逻辑初始化
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
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_interview_detail
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeInterviewDetail extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
/** 面试ID */
|
||||
@ApiModelProperty("面试ID")
|
||||
@Excel(name = "面试ID")
|
||||
private Long interviewId;
|
||||
|
||||
/** 面试官名称 */
|
||||
@ApiModelProperty("面试官名称")
|
||||
@Excel(name = "面试官名称")
|
||||
private String interviewerName;
|
||||
|
||||
/** 面试内容 */
|
||||
@ApiModelProperty("面试内容")
|
||||
@Excel(name = "面试内容")
|
||||
private String content;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
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_interview_info
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeInterviewInfo 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 interName;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
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_detail
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
@Data
|
||||
@Accessors(chain = true)
|
||||
public class HotakeMeetingCalendarDetail extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键ID */
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
/** 会议ID */
|
||||
@ApiModelProperty("会议ID")
|
||||
@Excel(name = "会议ID")
|
||||
private Long meetingId;
|
||||
|
||||
/** 参会人员ID */
|
||||
@ApiModelProperty("参会人员ID")
|
||||
@Excel(name = "参会人员ID")
|
||||
private Long userId;
|
||||
|
||||
|
||||
}
|
||||
@@ -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