Skip to content

Commit

Permalink
add get set
Browse files Browse the repository at this point in the history
  • Loading branch information
weihubeats committed Sep 24, 2024
1 parent 26dda2c commit dc61eaf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@
- [spring-boot-nebula-web](spring-boot-nebula-web) web封装组件(包括统一异常返回,简化返回,自定义异常报警)
- [spring-boot-nebula-web-common](spring-boot-nebula-web-common) web模块基础工具类
- [spring-boot-nebula-distribute-lock](spring-boot-nebula-distribute-lock) 分布式锁
- [spring-boot-nebula-mybatis](spring-boot-nebula-mybatis) mybatis的一些封装,比如提供基础的`BaseDO`,一些常用的类型处理器,比如数组

## [spring-boot-nebula-web-common](spring-boot-nebula-web-common)
- 提供[SpringBeanUtils.java](spring-boot-nebula-web-common%2Fsrc%2Fmain%2Fjava%2Fcom%2Fnebula%2Fweb%2Fcommon%2Futils%2FSpringBeanUtils.java)获取spring bean
Expand Down
7 changes: 7 additions & 0 deletions spring-boot-nebula-mybatis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
</properties>

<dependencies>

<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
Expand All @@ -27,6 +28,12 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>

</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@
package com.nebula.mybatis.entity;

import java.time.LocalDateTime;
import lombok.Data;

/**
* @author : wh
* @date : 2024/3/11 13:06
* @description:
*/
@Data
public class BaseDO {

private Long id;
Expand Down

0 comments on commit dc61eaf

Please sign in to comment.