MrShi
昨天 1c20c8231980a8d4b91688ff8641a06d3b2f68ab
server/meeting/meeting_service/src/main/java/com/doumee/dao/web/request/BookingsRequest.java
@@ -1,5 +1,6 @@
package com.doumee.dao.web.request;
import com.doumee.service.business.third.model.LoginUserModel;
import com.doumee.dao.business.model.BookingTime;
import com.doumee.dao.system.model.Multifile;
import com.doumee.dao.business.model.ProjectRel;
@@ -19,7 +20,7 @@
 */
@Data
@ApiModel("会议室预定请求类")
public class BookingsRequest {
public class BookingsRequest extends LoginUserModel {
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
@@ -38,7 +39,8 @@
    @ApiModelProperty(value = "关联会议室主键", example = "1")
    private Integer roomId;
    @ApiModelProperty(value = "是否发送参会人通知:0=通知;1=不通知")
    private Integer joinNotice;
    @ApiModelProperty(value = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;