门诊医生排班->科室名称管理后端接口,前端基础页面
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.openhis.administration.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 科室Entity实体
|
||||
*
|
||||
* @date 2025-12-08
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "adm_dept_info")
|
||||
@Accessors(chain = true)
|
||||
public class Dept {
|
||||
/** id */
|
||||
private Integer id;
|
||||
|
||||
/** 关联租户的租户名称 */
|
||||
private String orgName;
|
||||
|
||||
/** 科室名称 */
|
||||
private String deptName;
|
||||
|
||||
/** 启用状态 */
|
||||
private Boolean status;
|
||||
|
||||
/** 预约取消限制 */
|
||||
private Integer cancelLimit;
|
||||
|
||||
/** 备注 */
|
||||
private String remark;
|
||||
|
||||
/** 创建时间 */
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/** 更新时间 */
|
||||
private LocalDateTime updateTime;
|
||||
}
|
||||
Reference in New Issue
Block a user