初始化项目

This commit is contained in:
2026-03-19 22:55:36 +08:00
parent b09f9a3ec0
commit 22d4541de4

View File

@@ -2,6 +2,7 @@ package com.jeesite.modules.biz.entity;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
import com.jeesite.common.mybatis.annotation.JoinTable; import com.jeesite.common.mybatis.annotation.JoinTable;
import com.jeesite.common.mybatis.annotation.JoinTable.Type; import com.jeesite.common.mybatis.annotation.JoinTable.Type;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
@@ -22,6 +23,7 @@ import java.io.Serial;
/** /**
* 网站信息 Entity * 网站信息 Entity
*
* @author gaoxq * @author gaoxq
* @version 2026-03-19 * @version 2026-03-19
*/ */
@@ -34,7 +36,7 @@ import java.io.Serial;
@Column(name = "web_account", attrName = "webAccount", label = "登录账号", isQuery = false), @Column(name = "web_account", attrName = "webAccount", label = "登录账号", isQuery = false),
@Column(name = "web_password", attrName = "webPassword", label = "登录密码", isQuery = false), @Column(name = "web_password", attrName = "webPassword", label = "登录密码", isQuery = false),
@Column(name = "remarks", attrName = "remarks", label = "说明事项", isQuery = false), @Column(name = "remarks", attrName = "remarks", label = "说明事项", isQuery = false),
@Column(name="login_user", attrName="loginUser", label="所属账户", isQuery=false), @Column(name = "login_user", attrName = "loginUser", label = "所属账户", isUpdate = false, isQuery = false, isUpdateForce = true),
@Column(name = "ustatus", attrName = "ustatus", label = "状态"), @Column(name = "ustatus", attrName = "ustatus", label = "状态"),
}, orderBy = "a.create_time DESC" }, orderBy = "a.create_time DESC"
) )