修改页面弹窗全屏
This commit is contained in:
@@ -3,13 +3,6 @@ package com.jeesite.modules.biz.entity;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import com.jeesite.common.mybatis.annotation.JoinTable;
|
||||
import com.jeesite.common.mybatis.annotation.JoinTable.Type;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import jakarta.validation.constraints.NotBlank;
|
||||
import jakarta.validation.constraints.Size;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
|
||||
import com.jeesite.common.entity.DataEntity;
|
||||
import com.jeesite.common.mybatis.annotation.Column;
|
||||
import com.jeesite.common.mybatis.annotation.Table;
|
||||
@@ -29,8 +22,14 @@ import java.io.Serial;
|
||||
@Table(name = "biz_notes", alias = "a", label = "便签管理表信息", columns = {
|
||||
@Column(name = "create_time", attrName = "createTime", label = "创建时间", isUpdate = false, isQuery = false, isUpdateForce = true),
|
||||
@Column(name = "id", attrName = "id", label = "便签唯一标识", isPK = true),
|
||||
@Column(name = "title", attrName = "title", label = "便签主题", queryType = QueryType.LIKE),
|
||||
@Column(name = "content", attrName = "content", label = "便签内容", queryType = QueryType.LIKE),
|
||||
@Column(name = "priority", attrName = "priority", label = "便签级别"),
|
||||
@Column(name = "ustatus", attrName = "ustatus", label = "便签状态"),
|
||||
@Column(name = "start_time", attrName = "startTime", label = "开始时间"),
|
||||
@Column(name = "end_time", attrName = "endTime", label = "结束时间"),
|
||||
@Column(name = "type", attrName = "type", label = "便签类型"),
|
||||
@Column(name = "deadline", attrName = "deadline", label = "截至时间"),
|
||||
@Column(name = "update_time", attrName = "updateTime", label = "更新时间"),
|
||||
@Column(name = "create_user", attrName = "createUser", label = "创建用户", isUpdate = false, isUpdateForce = true),
|
||||
}, orderBy = "a.create_time DESC"
|
||||
@@ -41,8 +40,14 @@ public class BizNotes extends DataEntity<BizNotes> implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Date createTime; // 创建时间
|
||||
private String title;
|
||||
private String content; // 便签内容
|
||||
private String priority;
|
||||
private String ustatus; // 便签状态
|
||||
private Date startTime;
|
||||
private Date endTime;
|
||||
private String type;
|
||||
private Date deadline;
|
||||
private Date updateTime; // 更新时间
|
||||
private String createUser; // 创建用户
|
||||
|
||||
|
||||
@@ -11,8 +11,14 @@ const { adminPath } = useGlobSetting();
|
||||
|
||||
export interface BizNotes extends BasicModel<BizNotes> {
|
||||
createTime?: string; // 创建时间
|
||||
title: string;
|
||||
content: string; // 便签内容
|
||||
priority: string;
|
||||
ustatus: string; // 便签状态
|
||||
startTime: string;
|
||||
endTime: string;
|
||||
type: string;
|
||||
deadline?: string;
|
||||
updateTime: string; // 更新时间
|
||||
createUser?: string; // 创建用户
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user