serv init

This commit is contained in:
2025-09-28 14:20:09 +08:00
parent f37a9f4163
commit 6fda9d89f6
57 changed files with 3756 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-annotation</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-core</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-dto</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,19 @@
package org.xyzh.common.core.constant;
/**
* @description Constants.java文件描述
* @filename Constants.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public class Constants {
/**
* @description JSON_WHITELIST_STR JSON白名单
* @author yslg
* @since 2025-09-07
*/
public static final String JSON_WHITELIST_STR = "org.xyzh";
}

View File

@@ -0,0 +1,5 @@
package org.xyzh.common.core.domain;
public class LoginDomain {
}

View File

@@ -0,0 +1,42 @@
package org.xyzh.common.core.domain;
/**
* @description LoginParam.java文件描述 登录参数
* @filename LoginParam.java
* @author yslg
* @copyright xyzh
* @since 2025-09-28
*/
public class LoginParam {
/**
* @description 邮箱
* @author yslg
* @since 2025-09-28
*/
private String email;
/**
* @description 密码
* @author yslg
* @since 2025-09-28
*/
private String password;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}

View File

@@ -0,0 +1,404 @@
package org.xyzh.common.core.domain;
import java.io.Serializable;
import java.util.List;
import org.springframework.http.HttpStatus;
import org.xyzh.common.core.page.PageDomain;
import org.xyzh.common.core.page.PageParam;
/**
* @description ResultDomain.java文件描述 统一返回结果实体类
* @filename ResultDomain.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public class ResultDomain<T> implements Serializable{
private static final long serialVersionUID = 1L;
/**
* @description 状态码
* @author yslg
* @since 2025-09-07
*/
private int code;
/**
* @description 返回消息
* @author yslg
* @since 2025-09-07
*/
private String message;
/**
* @description 操作是否成功
* @author yslg
* @since 2025-09-07
*/
private boolean success;
/**
* @description 是否登录
* @author yslg
* @since 2025-09-07
*/
private boolean login;
/**
* @description 是否有权限
* @author yslg
* @since 2025-09-07
*/
private boolean auth;
/**
* @description 返回数据
* @author yslg
* @since 2025-09-07
*/
private T data;
/**
* @description 返回数据列表
* @author yslg
* @since 2025-09-07
*/
private List<T> dataList;
/**
* @description 分页参数
* @author yslg
* @since 2025-09-07
*/
private PageParam pageParam;
/**
* @description 分页信息
* @author yslg
* @since 2025-09-07
*/
private PageDomain<T> pageDomain;
public ResultDomain() {
}
public ResultDomain(int code, String message, T data) {
this.code = code;
this.message = message;
this.data = data;
}
public ResultDomain(int code, String message, List<T> dataList) {
this.code = code;
this.message = message;
this.dataList = dataList;
}
public ResultDomain(int code, String message, PageDomain<T> pageDomain) {
this.code = code;
this.message = message;
this.pageDomain = pageDomain;
this.pageParam = pageDomain.getPageParam();
this.dataList = pageDomain.getDataList();
}
/**
* @description 获取状态码
* @return int 状态码
* @author yslg
* @since 2025-09-07
*/
public int getCode() {
return code;
}
/**
* @description 设置状态码
* @param code 状态码
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setCode(int code) {
this.code = code;
}
/**
* @description 获取返回消息
* @return String 返回消息
* @author yslg
* @since 2025-09-07
*/
public String getMessage() {
return message;
}
/**
* @description 设置返回消息
* @param message 返回消息
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setMessage(String message) {
this.message = message;
}
/**
* @description 获取数据
* @return T 数据
* @author yslg
* @since 2025-09-07
*/
public T getData() {
return data;
}
/**
* @description 设置数据
* @param data 数据
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setData(T data) {
this.data = data;
}
/**
* @description 获取数据列表
* @return List<T> 数据列表
* @author yslg
* @since 2025-09-07
*/
public List<T> getDataList() {
return dataList;
}
/**
* @description 设置数据列表
* @param dataList 数据列表
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setDataList(List<T> dataList) {
this.dataList = dataList;
}
/**
* @description 获取分页参数
* @return PageParam 分页参数
* @author yslg
* @since 2025-09-07
*/
public PageParam getPageParam() {
return pageParam;
}
/**
* @description 设置分页参数
* @param pageParam 分页参数
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setPageParam(PageParam pageParam) {
this.pageParam = pageParam;
}
/**
* @description 获取分页信息
* @return PageDomain<T> 分页信息
* @author yslg
* @since 2025-09-07
*/
public PageDomain<T> getPageDomain() {
return pageDomain;
}
/**
* @description 设置分页信息
* @param pageDomain 分页信息
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setPageDomain(PageDomain<T> pageDomain) {
this.pageDomain = pageDomain;
}
/**
* @description 获取成功标志
* @return boolean 成功标志
* @author yslg
* @since 2025-09-07
*/
public boolean isSuccess() {
return success;
}
/**
* @description 设置成功标志
* @param success 成功标志
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setSuccess(boolean success) {
this.success = success;
}
/**
* @description 获取登录标志
* @return boolean 登录标志
* @author yslg
* @since 2025-09-07
*/
public boolean isLogin() {
return login;
}
/**
* @description 设置登录标志
* @param login 登录标志
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setLogin(boolean login) {
this.login = login;
}
/**
* @description 获取权限标志
* @return boolean 权限标志
* @author yslg
* @since 2025-09-07
*/
public boolean isAuth() {
return auth;
}
/**
* @description 设置权限标志
* @param auth 权限标志
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setAuth(boolean auth) {
this.auth = auth;
}
/**
* @description 操作成功
* @param message 返回消息
* @param data 返回数据
* @author yslg
* @since 2025-09-07
*/
public void success(String message, T data) {
this.code = HttpStatus.OK.value();
this.message = message;
this.success = true;
this.auth = true;
this.login = true;
this.data = data;
}
/**
* @description 操作成功
* @param message 返回消息
* @param dataList 返回数据列表
* @author yslg
* @since 2025-09-07
*/
public void success(String message, List<T> dataList) {
this.code = HttpStatus.OK.value();
this.message = message;
this.success = true;
this.auth = true;
this.login = true;
this.dataList = dataList;
}
/**
* @description 操作成功
* @param message 返回消息
* @param pageDomain 返回分页信息
* @author yslg
* @since 2025-09-07
*/
public void success(String message, PageDomain<T> pageDomain) {
this.code = HttpStatus.OK.value();
this.message = message;
this.success = true;
this.auth = true;
this.login = true;
this.pageDomain = pageDomain;
this.pageParam = pageDomain.getPageParam();
this.dataList = pageDomain.getDataList();
}
/**
* @description 操作失败
* @param message 返回消息
* @author yslg
* @since 2025-09-07
*/
public void fail(String message) {
this.code = HttpStatus.BAD_REQUEST.value();
this.message = message;
this.success = false;
this.auth = true;
this.login = true;
this.data = null;
}
/**
* @description 操作失败
* @param code 状态码
* @param message 返回消息
* @author yslg
* @since 2025-09-07
*/
public void fail(int code, String message) {
this.code = code;
this.message = message;
this.success = false;
this.auth = true;
this.login = true;
this.data = null;
}
/**
* @description 未登录
* @param message 返回消息
* @author yslg
* @since 2025-09-07
*/
public void noLogin(String message) {
this.code = HttpStatus.UNAUTHORIZED.value();
this.message = message;
this.success = false;
this.auth = false;
this.login = false;
this.data = null;
}
/**
* @description 无权限
* @param message 返回消息
* @author yslg
* @since 2025-09-07
*/
public void noAuth(String message) {
this.code = HttpStatus.FORBIDDEN.value();
this.message = message;
this.success = false;
this.auth = false;
this.login = true;
this.data = null;
}
}

View File

@@ -0,0 +1,66 @@
package org.xyzh.common.core.entity;
import java.sql.Date;
import java.io.Serializable;
/**
* @description BaseEntity.java文件描述 基础实体类
* @filename BaseEntity.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public class BaseEntity implements Serializable {
private static final long serialVersionUID = 1L;
/**
* @description id 主键
* @author yslg
* @since 2025-09-07
*/
private String id;
/**
* @description 创建时间
* @author yslg
* @since 2025-09-07
*/
private Date createTime;
/**
* @description 更新时间
* @author yslg
* @since 2025-09-07
*/
private Date updateTime;
/**
* @description 删除时间
* @author yslg
* @since 2025-09-07
*/
private Date deleteTime;
/**
* @description 是否删除 0未删除 1已删除
* @author yslg
* @since 2025-09-07
*/
private Integer isDeleted;
/**
* @description 版本号
* @author yslg
* @since 2025-09-07
*/
private Integer version;
/**
* @description 备注
* @author yslg
* @since 2025-09-07
*/
private String remark;
}

View File

@@ -0,0 +1,100 @@
package org.xyzh.common.core.entity;
import java.util.List;
import org.xyzh.common.core.enums.DataStatus;
/**
* @description DataEntity.java文件描述 数据实体类
* @filename DataEntity.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public class DataEntity<T> extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* @description 创建人ID
* @author yslg
* @since 2025-09-07
*/
private String creatorID;
/**
* @description 创建人名称
* @author yslg
* @since 2025-09-07
*/
private String creatorName;
/**
* @description 更新人ID
* @author yslg
* @since 2025-09-07
*/
private String updatorID;
/**
* @description 更新人名称
* @author yslg
* @since 2025-09-07
*/
private String updatorName;
/**
* @description 删除人ID
* @author yslg
* @since 2025-09-07
*/
private String deleterID;
/**
* @description 删除人名称
* @author yslg
* @since 2025-09-07
*/
private String deleterName;
/**
* @description 所有者ID
* @author yslg
* @since 2025-09-07
*/
private String ownerID;
/**
* @description 所有者名称
* @author yslg
* @since 2025-09-07
*/
private String ownerName;
/**
* @description 数据状态
* @author yslg
* @since 2025-09-07
*/
private DataStatus dataStatus;
/**
* @description 是否可见
* @author yslg
* @since 2025-09-07
*/
private Boolean visible;
/**
* @description 实体数据
* @author yslg
* @since 2025-09-07
*/
private T data;
/**
* @description 实体数据列表
* @author yslg
* @since 2025-09-07
*/
private List<T> dataList;
}

View File

@@ -0,0 +1,59 @@
package org.xyzh.common.core.enums;
/**
* @description DataStatus枚举类 数据状态枚举类
* @filename DataStatus.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public enum DataStatus {
WAITING("0", "待处理", "数据待处理"),
PROCESSING("1", "处理中", "数据处理中"),
COMPLETED("2", "已完成", "数据已完成"),
FAILED("3", "处理失败", "数据处理失败"),
CANCELLED("4", "已取消", "数据已取消"),
DELETED("5", "已删除", "数据已删除");
private final String code;
private final String name;
private final String description;
DataStatus(String code, String name, String description) {
this.code = code;
this.name = name;
this.description = description;
}
/**
* @description 获取枚举值
* @param
* @return String 枚举值
* @author yslg
* @since 2025-09-07
*/
public String getCode() {
return code;
}
/**
* @description 获取枚举名称
* @return String 枚举名称
* @author yslg
* @since 2025-09-07
*/
public String getName() {
return name;
}
/**
* @description 获取枚举描述
* @return String 枚举描述
* @author yslg
* @since 2025-09-07
*/
public String getDescription() {
return description;
}
}

View File

@@ -0,0 +1,5 @@
package org.xyzh.common.core.enums;
public enum UserStatus {
}

View File

@@ -0,0 +1,84 @@
package org.xyzh.common.core.page;
import java.io.Serializable;
import java.util.List;
/**
* @description PageDomain.java文件描述 分页数据实体类
* @filename PageDomain.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public class PageDomain<T> implements Serializable{
private static final long serialVersionUID = 1L;
/**
* @description 分页参数
* @author yslg
* @since 2025-09-07
*/
private PageParam pageParam;
/**
* @description 数据列表
* @author yslg
* @since 2025-09-07
*/
private List<T> dataList;
public PageDomain() {
}
public PageDomain(PageParam pageParam, List<T> dataList) {
this.pageParam = pageParam;
this.dataList = dataList;
}
public PageDomain(int pageNumber, int pageSize, int totalPages, long totalElements, List<T> dataList) {
this.pageParam = new PageParam(pageNumber, pageSize, totalPages, totalElements);
this.dataList = dataList;
}
/**
* @description 设置分页参数
* @param pageParam 分页参数
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setPageParam(PageParam pageParam) {
this.pageParam = pageParam;
}
/**
* @description 获取分页参数
* @return PageParam 分页参数
* @author yslg
* @since 2025-09-07
*/
public PageParam getPageParam() {
return pageParam;
}
/**
* @description 设置数据列表
* @param dataList 数据列表
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setDataList(List<T> dataList) {
this.dataList = dataList;
}
/**
* @description 获取数据列表
* @return List<T> 数据列表
* @author yslg
* @since 2025-09-07
*/
public List<T> getDataList() {
return dataList;
}
}

View File

@@ -0,0 +1,151 @@
package org.xyzh.common.core.page;
import java.io.Serializable;
/**
* @description PageParam.java文件描述 分页参数
* @filename PageParam.java
* @author yslg
* @copyright yslg
* @since 2025-09-07
*/
public class PageParam implements Serializable {
private static final long serialVersionUID = 1L;
/**
* @description 当前页码
* @author yslg
* @since 2025-09-07
*/
private int pageNumber;
/**
* @description 每页显示数量
* @author yslg
* @since 2025-09-07
*/
private int pageSize;
/**
* @description 总页数
* @author yslg
* @since 2025-09-07
*/
private int totalPages;
/**
* @description 总记录数
* @author yslg
* @since 2025-09-07
*/
private long totalElements;
public PageParam() {
this.pageNumber = 1;
this.pageSize = 10;
this.totalPages = 0;
this.totalElements = 0;
}
public PageParam(int pageNumber, int pageSize) {
this.pageNumber = pageNumber;
this.pageSize = pageSize;
}
public PageParam(int pageNumber, int pageSize, int totalPages, long totalElements) {
this.pageNumber = pageNumber;
this.pageSize = pageSize;
this.totalPages = totalPages;
this.totalElements = totalElements;
}
/**
* @description 设置当前页码
* @param pageNumber 当前页码
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setPageNumber(int pageNumber) {
this.pageNumber = pageNumber;
}
/**
* @description 获取当前页码
* @return 当前页码
* @author yslg
* @since 2025-09-07
*/
public int getPageNumber() {
return pageNumber;
}
/**
* @description 设置每页显示数量
* @param pageSize 每页显示数量
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
/**
* @description 获取每页显示数量
* @return 每页显示数量
* @author yslg
* @since 2025-09-07
*/
public int getPageSize() {
return pageSize;
}
/**
* @description 设置总页数
* @param totalPages 总页数
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setTotalPages(int totalPages) {
this.totalPages = totalPages;
}
/**
* @description 获取总页数
* @return 总页数
* @author yslg
* @since 2025-09-07
*/
public int getTotalPages() {
return totalPages;
}
/**
* @description 设置总记录数
* @param totalElements 总记录数
* @return void
* @author yslg
* @since 2025-09-07
*/
public void setTotalElements(long totalElements) {
this.totalElements = totalElements;
if (this.pageSize > 0) {
this.totalPages = (int) ((totalElements + pageSize - 1) / pageSize);
} else {
this.totalPages = 0;
}
}
/**
* @description 获取总记录数
* @return 总记录数
* @author yslg
* @since 2025-09-07
*/
public long getTotalElements() {
return totalElements;
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-dto</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,161 @@
package org.xyzh.common.dto;
import java.io.Serializable;
import java.sql.Date;
/**
* @description BaseDTO.java文件描述
* @filename BaseDTO.java
* @author yslg
* @copyright xyzh
* @since 2025-09-07
*/
public class BaseDTO implements Serializable{
private static final long serialVersionUID = 1L;
/**
* @description id 主键
* @author yslg
* @since 2025-09-10
*/
private String id;
/**
* @description 创建时间
* @author yslg
* @since 2025-09-10
*/
private Date createTime;
/**
* @description 更新时间
* @author yslg
* @since 2025-09-10
*/
private Date updateTime;
/**
* @description 删除时间
* @author yslg
* @since 2025-09-10
*/
private Date deleteTime;
/**
* @description 是否删除
* @author yslg
* @since 2025-09-10
*/
private Integer deleted;
public BaseDTO() {
}
/**
* @description 获取ID
* @return String ID
* @author yslg
* @since 2025-09-10
*/
public String getID() {
return this.id;
}
/**
* @description 设置ID
* @param id ID
* @author yslg
* @since 2025-09-10
*/
public void setID(String id) {
this.id = id;
}
/**
* @description 获取创建时间
* @return Date 创建时间
* @author yslg
* @since 2025-09-10
*/
public Date getCreateTime() {
return createTime;
}
/**
* @description 设置创建时间
* @param createTime 创建时间
* @author yslg
* @since 2025-09-10
*/
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
/**
* @description 获取更新时间
* @return Date 更新时间
* @author yslg
* @since 2025-09-10
*/
public Date getUpdateTime() {
return updateTime;
}
/**
* @description 设置更新时间
* @param updateTime 更新时间
* @author yslg
* @since 2025-09-10
*/
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
/**
* @description 获取删除时间
* @return Date 删除时间
* @author yslg
* @since 2025-09-10
*/
public Date getDeleteTime() {
return deleteTime;
}
/**
* @description 设置删除时间
* @param deleteTime 删除时间
* @author yslg
* @since 2025-09-10
*/
public void setDeleteTime(Date deleteTime) {
this.deleteTime = deleteTime;
}
/**
* @description 获取是否删除
* @return Integer 是否删除
* @author yslg
* @since 2025-09-10
*/
public Integer getDeleted() {
return deleted;
}
/**
* @description 设置是否删除
* @param deleted 是否删除
* @author yslg
* @since 2025-09-10
*/
public void setDeleted(Integer deleted) {
this.deleted = deleted;
}
@Override
public String toString(){
return "BaseDTO { id=" + id + ", createTime=" + createTime + ", updateTime=" + updateTime + ", deleteTime=" + deleteTime + ", deleted=" + deleted + " }";
}
}

View File

@@ -0,0 +1,75 @@
package org.xyzh.common.dto.dept;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysDept.java文件描述 部门信息
* @filename TbSysDept.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysDept extends BaseDTO{
private static final long serialVersionUID = 1L;
/**
* @description 部门ID
* @author yslg
* @since 2024-06
*/
private String deptID;
/**
* @description 父部门ID
* @author yslg
* @since 2024-06
*/
private String parentID;
/**
* @description 部门名称
* @author yslg
* @since 2024-06
*/
private String name;
/**
* @description 部门描述
* @author yslg
* @since 2024-06
*/
private String description;
/**
* @description 创建人
* @author yslg
* @since 2024-06
*/
private String creator;
/**
* @description 更新人
* @author yslg
* @since 2024-06
*/
private String updater;
@Override
public String toString() {
return "TbSysDept{" +
"id='" + getID() + '\'' +
", deptID='" + deptID + '\'' +
", parentID='" + parentID + '\'' +
", name='" + name + '\'' +
", description='" + description + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,58 @@
package org.xyzh.common.dto.dept;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysDeptRole.java文件描述 部门角色关联信息
* @filename TbSysDeptRole.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysDeptRole extends BaseDTO {
private static final long serialVersionUID = 1L;
/**
* @description 部门ID
* @author yslg
* @since 2024-06
*/
private String deptID;
/**
* @description 角色ID
* @author yslg
* @since 2024-06
*/
private String roleID;
/**
* @description 创建人
* @author yslg
* @since 2025-09-16
*/
public String creator;
/**
* @description 更新人
* @author yslg
* @since 2025-09-16
*/
public String updater;
@Override
public String toString() {
return "TbSysDeptRole{" +
"id='" + getID() + '\'' +
", deptID='" + deptID + '\'' +
", roleID='" + roleID + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,200 @@
package org.xyzh.common.dto.log;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysLoginLog.java文件描述 登录日志信息
* @filename TbSysLoginLog.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysLoginLog extends BaseDTO {
private static final long serialVersionUID = 1L;
/**
* @description 用户ID
* @author yslg
* @since 2025-09-16
*/
private String userID;
/**
* @description 用户名
* @author yslg
* @since 2025-09-16
*/
private String username;
/**
* @description 登录IP地址
* @author yslg
* @since 2025-09-16
*/
private String ipAddress;
/**
* @description IP来源
* @author yslg
* @since 2025-09-16
*/
private String ipSource;
/**
* @description 浏览器类型
* @author yslg
* @since 2025-09-16
*/
private String browser;
/**
* @description 操作系统
* @author yslg
* @since 2025-09-16
*/
private String os;
/**
* @description 登录密码
* @author yslg
* @since 2025-09-16
*/
private String password;
/**
* @description 登录时间
* @author yslg
* @since 2025-09-16
*/
private String loginTime;
/**
* @description 登录状态0失败 1成功
* @author yslg
* @since 2025-09-16
*/
private Integer status;
/**
* @description 错误次数
* @author yslg
* @since 2025-09-16
*/
private Integer errorCount;
/**
* @description 登录消息
* @author yslg
* @since 2025-09-16
*/
private String message;
public String getUserID() {
return userID;
}
public void setUserID(String userID) {
this.userID = userID;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getIpAddress() {
return ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
public String getIpSource() {
return ipSource;
}
public void setIpSource(String ipSource) {
this.ipSource = ipSource;
}
public String getBrowser() {
return browser;
}
public void setBrowser(String browser) {
this.browser = browser;
}
public String getOs() {
return os;
}
public void setOs(String os) {
this.os = os;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getLoginTime() {
return loginTime;
}
public void setLoginTime(String loginTime) {
this.loginTime = loginTime;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getErrorCount() {
return errorCount;
}
public void setErrorCount(Integer errorCount) {
this.errorCount = errorCount;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public String toString() {
return "TbSysLoginLog{" +
"id='" + getID() + '\'' +
", userID='" + userID + '\'' +
", username='" + username + '\'' +
", ipAddress='" + ipAddress + '\'' +
", ipSource='" + ipSource + '\'' +
", browser='" + browser + '\'' +
", os='" + os + '\'' +
", password='" + password + '\'' +
", loginTime='" + loginTime + '\'' +
", status=" + status +
", errorCount=" + errorCount +
", message='" + message + '\'' +
", createTime='" + getCreateTime() + '\'' +
", updateTime='" + getUpdateTime() + '\'' +
", deleteTime='" + getDeleteTime() + '\'' +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,184 @@
package org.xyzh.common.dto.menu;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysMenu.java文件描述 菜单信息
* @filename TbSysMenu.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysMenu extends BaseDTO {
private static final long serialVersionUID = 1L;
/**
* @description 菜单ID
* @author yslg
* @since 2024-06
*/
private String menuID;
/**
* @description 父菜单ID
* @author yslg
* @since 2024-06
*/
private String parentID;
/**
* @description 菜单名称
* @author yslg
* @since 2024-06
*/
private String name;
/**
* @description 菜单描述
* @author yslg
* @since 2024-06
*/
private String description;
/**
* @description 菜单URL
* @author yslg
* @since 2024-06
*/
private String url;
/**
* @description 菜单图标
* @author yslg
* @since 2024-06
*/
private String icon;
/**
* @description 菜单顺序
* @author yslg
* @since 2024-06
*/
private Integer orderNum;
/**
* @description 菜单类型 0目录 1菜单 2按钮
* @author yslg
* @since 2024-06
*/
private Integer type;
/**
* @description 创建人
* @author yslg
* @since 2024-06
*/
private String creator;
/**
* @description 更新人
* @author yslg
* @since 2024-06
*/
private String updater;
public String getMenuID() {
return menuID;
}
public void setMenuID(String menuID) {
this.menuID = menuID;
}
public String getParentID() {
return parentID;
}
public void setParentID(String parentID) {
this.parentID = parentID;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public Integer getOrderNum() {
return orderNum;
}
public void setOrderNum(Integer orderNum) {
this.orderNum = orderNum;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getUpdater() {
return updater;
}
public void setUpdater(String updater) {
this.updater = updater;
}
@Override
public String toString() {
return "TbSysMenu{" +
"id='" + getID() + '\'' +
", menuID='" + menuID + '\'' +
", parentID='" + parentID + '\'' +
", name='" + name + '\'' +
", description='" + description + '\'' +
", url='" + url + '\'' +
", icon='" + icon + '\'' +
", orderNum=" + orderNum +
", type=" + type +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,90 @@
package org.xyzh.common.dto.menu;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysMenuPermission.java文件描述 菜单权限信息
* @filename TbSysMenuPermission.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysMenuPermission extends BaseDTO{
private static final long serialVersionUID = 1L;
/**
* @description 菜单ID
* @author yslg
* @since 2024-06
*/
private String menuID;
/**
* @description 权限ID
* @author yslg
* @since 2024-06
*/
private String permissionID;
/**
* @description 创建人
* @author yslg
* @since 2024-06
*/
private String creator;
/**
* @description 更新人
* @author yslg
* @since 2024-06
*/
private String updater;
public String getMenuID() {
return menuID;
}
public void setMenuID(String menuID) {
this.menuID = menuID;
}
public String getPermissionID() {
return permissionID;
}
public void setPermissionID(String permissionID) {
this.permissionID = permissionID;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getUpdater() {
return updater;
}
public void setUpdater(String updater) {
this.updater = updater;
}
@Override
public String toString() {
return "TbSysMenuPermission{" +
"id='" + getID() + '\'' +
", menuID='" + menuID + '\'' +
", permissionID='" + permissionID + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,122 @@
package org.xyzh.common.dto.permission;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysPermission.java文件描述 权限信息
* @filename TbSysPermission.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysPermission extends BaseDTO{
private static final long serialVersionUID = 1L;
/**
* @description 权限ID
* @author yslg
* @since 2024-06
*/
private String permissionID;
/**
* @description 权限名称
* @author yslg
* @since 2024-06
*/
private String name;
/**
* @description 权限描述
* @author yslg
* @since 2024-06
*/
private String description;
/**
* @description 权限编码
* @author yslg
* @since 2024-06
*/
private String code;
/**
* @description 创建人
* @author yslg
* @since 2024-06
*/
private String creator;
/**
* @description 更新人
* @author yslg
* @since 2024-06
*/
private String updater;
public String getPermissionID() {
return permissionID;
}
public void setPermissionID(String permissionID) {
this.permissionID = permissionID;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getUpdater() {
return updater;
}
public void setUpdater(String updater) {
this.updater = updater;
}
@Override
public String toString() {
return "TbSysPermission{" +
"id='" + getID() + '\'' +
", permissionID='" + permissionID + '\'' +
", name='" + name + '\'' +
", description='" + description + '\'' +
", code='" + code + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,105 @@
package org.xyzh.common.dto.role;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysRole.java文件描述 角色信息
* @filename TbSysRole.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysRole extends BaseDTO {
private static final long serialVersionUID = 1L;
/**
* @description 角色ID
* @author yslg
* @since 2024-06
*/
private String roleID;
/**
* @description 角色名称
* @author yslg
* @since 2024-06
*/
private String name;
/**
* @description 角色描述
* @author yslg
* @since 2024-06
*/
private String description;
/**
* @description 创建人
* @author yslg
* @since 2024-06
*/
private String creator;
/**
* @description 更新人
* @author yslg
* @since 2024-06
*/
private String updater;
public String getRoleID() {
return roleID;
}
public void setRoleID(String roleID) {
this.roleID = roleID;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getUpdater() {
return updater;
}
public void setUpdater(String updater) {
this.updater = updater;
}
@Override
public String toString() {
return "TbSysRole{" +
"id='" + getID() + '\'' +
",roleID='" + roleID + '\'' +
", name='" + name + '\'' +
", description='" + description + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,57 @@
package org.xyzh.common.dto.role;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysRolePermission.java文件描述 角色权限关联信息
* @filename TbSysRolePermission.java
* @author yslg
* @copyright xyzh
* @since 2025-09-16
*/
public class TbSysRolePermission extends BaseDTO{
private static final long serialVersionUID = 1L;
/**
* @description 角色ID
* @author yslg
* @since 2024-06
*/
private String roleID;
/**
* @description 权限ID
* @author yslg
* @since 2024-06
*/
private String permissionID;
/**
* @description 创建人
* @author yslg
* @since 2025-09-16
*/
public String creator;
/**
* @description 更新人
* @author yslg
* @since 2025-09-16
*/
public String updater;
@Override
public String toString() {
return "TbSysRolePermission{" +
"id='" + getID() + '\'' +
", roleID='" + roleID + '\'' +
", permissionID='" + permissionID + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,124 @@
package org.xyzh.common.dto.user;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysUser.java文件描述
* @filename TbSysUser.java
* @author yslg
* @copyright xyzh
* @since 2025-09-10
*/
public class TbSysUser extends BaseDTO {
private static final long serialVersionUID = 1L;
/**
* @description 用户名
* @author yslg
* @since 2025-09-10
*/
private String username;
/**
* @description 密码
* @author yslg
* @since 2025-09-10
*/
private String password;
/**
* @description 邮箱
* @author yslg
* @since 2025-09-10
*/
private String email;
/**
* @description 手机号
* @author yslg
* @since 2025-09-10
*/
private String phone;
/**
* @description 微信号
* @author yslg
* @since 2025-09-10
*/
private String wechatID;
/**
* @description 用户状态
* @author yslg
* @since 2025-09-10
*/
private Integer status;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getWechatID() {
return wechatID;
}
public void setWechatID(String wechatID) {
this.wechatID = wechatID;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
@Override
public String toString() {
return "TbSysUser{" +
"id=" + getID() +
", username='" + username + '\'' +
", password='" + password + '\'' +
", email='" + email + '\'' +
", phone='" + phone + '\'' +
", wechatID='" + wechatID + '\'' +
", status=" + status +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,155 @@
package org.xyzh.common.dto.user;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysUserInfo.java文件描述 用户信息
* @filename TbSysUserInfo.java
* @author yslg
* @copyright xyzh
* @since 2025-09-11
*/
public class TbSysUserInfo extends BaseDTO {
private static final long serialVersionUID = 1L;
/**
* @description 用户ID
* @author yslg
* @since 2025-09-11
*/
private String userID;
/**
* @description 头像
* @author yslg
* @since 2025-09-11
*/
private String avatar;
/**
* @description 性别(0-未知,1-女,2-男)
* @author yslg
* @since 2025-09-11
*/
private Integer gender;
/**
* @description 姓
* @author yslg
* @since 2025-09-11
*/
private String familyName;
/**
* @description 名
* @author yslg
* @since 2025-09-11
*/
private String givenName;
/**
* @description 全名
* @author yslg
* @since 2025-09-11
*/
private String fullName;
/**
* @description ID卡号
* @author yslg
* @since 2025-09-11
*/
private String idCard;
/**
* @description 地址
* @author yslg
* @since 2025-09-11
*/
private String address;
public String getUserID() {
return userID;
}
public void setUserID(String userID) {
this.userID = userID;
}
public String getAvatar() {
return avatar;
}
public void setAvatar(String avatar) {
this.avatar = avatar;
}
public Integer getGender() {
return gender;
}
public void setGender(Integer gender) {
this.gender = gender;
}
public String getFamilyName() {
return familyName;
}
public void setFamilyName(String familyName) {
this.familyName = familyName;
}
public String getGivenName() {
return givenName;
}
public void setGivenName(String givenName) {
this.givenName = givenName;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getIdCard() {
return idCard;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
@Override
public String toString() {
return "TbSysUserInfo{" +
"id=" + getID() +
", userID='" + userID + '\'' +
", avatar='" + avatar + '\'' +
", gender=" + gender +
", familyName='" + familyName + '\'' +
", givenName='" + givenName + '\'' +
", fullName='" + fullName + '\'' +
", idCard='" + idCard + '\'' +
", address='" + address + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,91 @@
package org.xyzh.common.dto.user;
import org.xyzh.common.dto.BaseDTO;
/**
* @description TbSysUserRole.java文件描述 用户角色
* @filename TbSysUserRole.java
* @author yslg
* @copyright xyzh
* @since 2025-09-26
*/
public class TbSysUserRole extends BaseDTO{
private static final long serialVersionUID = 1L;
/**
* @description 用户ID
* @author yslg
* @since 2024-06
*/
private String userID;
/**
* @description 角色ID
* @author yslg
* @since 2024-06
*/
private String roleID;
/**
* @description 创建人
* @author yslg
* @since 2024-06
*/
private String creator;
/**
* @description 更新人
* @author yslg
* @since 2024-06
*/
private String updater;
public String getUserID() {
return userID;
}
public void setUserID(String userID) {
this.userID = userID;
}
public String getRoleID() {
return roleID;
}
public void setRoleID(String roleID) {
this.roleID = roleID;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getUpdater() {
return updater;
}
public void setUpdater(String updater) {
this.updater = updater;
}
@Override
public String toString() {
return "TbSysUserRole{" +
"id='" + getID() + '\'' +
", userID='" + userID + '\'' +
", roleID='" + roleID + '\'' +
", creator='" + creator + '\'' +
", updater='" + updater + '\'' +
", createTime=" + getCreateTime() +
", updateTime=" + getUpdateTime() +
", deleteTime=" + getDeleteTime() +
", deleted=" + getDeleted() +
'}';
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-exception</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-jdbc</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-redis</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common-util</artifactId>
<version>${school-news.version}</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>school-news</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>common</artifactId>
<version>${school-news.version}</version>
<packaging>pom</packaging>
<modules>
<module>common-core</module>
<module>common-dto</module>
<module>common-annotation</module>
<module>common-exception</module>
<module>common-redis</module>
<module>common-jdbc</module>
<module>common-util</module>
</modules>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${jakarta.servlet.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-core</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-dto</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-annotation</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-exception</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-redis</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-jdbc</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>common-util</artifactId>
<version>${school-news.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>