会议室管理
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
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:
parent
3e3cefc587
commit
ec8d0a6b5b
@ -27,6 +27,10 @@ public class HsglSaveReqVO {
|
|||||||
@NotEmpty(message = "会议室地址不能为空")
|
@NotEmpty(message = "会议室地址不能为空")
|
||||||
private String location;
|
private String location;
|
||||||
|
|
||||||
|
@Schema(description = "用户部门", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
|
@NotEmpty(message = "用户部门不能为空")
|
||||||
|
private String deptId;
|
||||||
|
|
||||||
@Schema(description = "会议室类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
@Schema(description = "会议室类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
||||||
@NotNull(message = "会议室类型不能为空")
|
@NotNull(message = "会议室类型不能为空")
|
||||||
private Integer roomType;
|
private Integer roomType;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.home.dal.dataobject.hsgl;
|
package cn.iocoder.yudao.module.home.dal.dataobject.hsgl;
|
||||||
|
|
||||||
|
import com.sun.xml.bind.v2.TODO;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
@ -39,6 +40,10 @@ public class HsglDO extends BaseDO {
|
|||||||
* 会议室地址
|
* 会议室地址
|
||||||
*/
|
*/
|
||||||
private String location;
|
private String location;
|
||||||
|
/**
|
||||||
|
* 用户部门
|
||||||
|
*/
|
||||||
|
private Long deptId;
|
||||||
/**
|
/**
|
||||||
* 会议室类型
|
* 会议室类型
|
||||||
*
|
*
|
||||||
@ -88,4 +93,4 @@ public class HsglDO extends BaseDO {
|
|||||||
*/
|
*/
|
||||||
private String processInstanceId;
|
private String processInstanceId;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user