会议日程业务逻辑完善
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
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
|
||||
*
|
||||
@@ -38,7 +41,7 @@ public class HotakeMeetingCalendarInfo extends BaseEntity
|
||||
private String meetingName;
|
||||
|
||||
/** 会议日期 */
|
||||
@ApiModelProperty("会议日期")
|
||||
@ApiModelProperty("会议日期(年月日)")
|
||||
@Excel(name = "会议日期")
|
||||
private String meetingDate;
|
||||
|
||||
@@ -52,5 +55,8 @@ public class HotakeMeetingCalendarInfo extends BaseEntity
|
||||
@Excel(name = "状态", readConverterExp = "0=,取=消,1,正=常")
|
||||
private String status;
|
||||
|
||||
@ApiModelProperty("参会人员")
|
||||
private List<HotakeMeetingCalendarDetail> calendarDetails;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user