会议室管理
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run

This commit is contained in:
XaoLi717 2024-11-11 10:56:36 +08:00
parent 3e3cefc587
commit ec8d0a6b5b
2 changed files with 10 additions and 1 deletions

View File

@ -27,6 +27,10 @@ public class HsglSaveReqVO {
@NotEmpty(message = "会议室地址不能为空")
private String location;
@Schema(description = "用户部门", requiredMode = Schema.RequiredMode.REQUIRED)
@NotEmpty(message = "用户部门不能为空")
private String deptId;
@Schema(description = "会议室类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
@NotNull(message = "会议室类型不能为空")
private Integer roomType;

View File

@ -1,5 +1,6 @@
package cn.iocoder.yudao.module.home.dal.dataobject.hsgl;
import com.sun.xml.bind.v2.TODO;
import lombok.*;
import java.util.*;
import java.time.LocalDateTime;
@ -39,6 +40,10 @@ public class HsglDO extends BaseDO {
* 会议室地址
*/
private String location;
/**
* 用户部门
*/
private Long deptId;
/**
* 会议室类型
*
@ -88,4 +93,4 @@ public class HsglDO extends BaseDO {
*/
private String processInstanceId;
}
}