| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.bex</groupId>
- <artifactId>bex-cloud-staking</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>bex-cloud-staking-entity</artifactId>
- <name>BEX 质押服务 - 实体模块</name>
- <description>数据模型定义、实体类与Mapper接口</description>
- <dependencies>
- <!-- 依赖核心模块 -->
- <dependency>
- <groupId>com.bex</groupId>
- <artifactId>bex-cloud-staking-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- MyBatis-Plus 注解支持 -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot4-starter</artifactId>
- </dependency>
- <!-- Protobuf 消息定义 -->
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </dependency>
- <dependency>
- <groupId>com.bex</groupId>
- <artifactId>bex-cloud-common</artifactId>
- </dependency>
- </dependencies>
- </project>
|