Files
oneos-backend/yudao-module-asset/pom.xml
k kfluous a614df46f3 feat: 新增资产管理模块 - 停车场和车型参数管理
- 停车场管理:CRUD + 业务校验 + 权限控制
- 车型参数管理:主子表关联 + 维保项目管理
- 数据库表结构:asset_parking, asset_vehicle_model, asset_vehicle_model_maintain_item
- 优化点:参数校验、业务逻辑校验、类型安全
2026-03-12 03:04:11 +08:00

24 lines
885 B
XML

<?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">
<parent>
<groupId>cn.iocoder.cloud</groupId>
<artifactId>yudao</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>yudao-module-asset</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>资产管理模块,包含车辆、合同、备车、交车、还车、替换车等功能</description>
<url>https://github.com/YunaiV/yudao-cloud</url>
<modules>
<module>yudao-module-asset-api</module>
<module>yudao-module-asset-server</module>
</modules>
</project>