Files
ruoyi-vue-pro/yudao-module-mes/pom.xml
YunaiV 6d0569bcbd feat(mes): 新增 yudao-module-mes 模块骨架
新增 MES(制造执行系统)模块,包含 7 个业务域子包:
- md:基础数据(物料、客户、供应商、车间、工位、BOM)
- cal:日历排班(班次、班组、排班计划、假期)
- dv:设备管理(设备台账、点检、保养、维修)
- tm:工具管理(工具类型、工具台账)
- pro:生产管理(工序、工艺路线、工单、任务、报工、安灯)
- qc:质量管理(检验模板、IQC/IPQC/OQC/RQC、缺陷)
- wm:仓库管理(仓库/库区/库位、库存、出入库、调拨、盘点)

具体变更:
1. 新增 yudao-module-mes 模块(pom.xml + 目录结构)
2. 注册到根 pom.xml 和 yudao-server pom.xml
3. 新增 ErrorCodeConstants(1-040-000-000 段,按业务域加前缀)
4. 新增 DictTypeConstants、MesWebConfiguration(Swagger 分组)
5. 新增各层 package-info.java 说明
2026-02-14 23:07:58 +08:00

66 lines
2.1 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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.boot</groupId>
<artifactId>yudao</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>yudao-module-mes</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
mes 模块下制造执行系统Manufacturing Execution System
例如说:基础数据、排班日历、设备管理、工具管理、生产管理、质量管理、仓库管理等等
</description>
<dependencies>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-system</artifactId>
<version>${revision}</version>
</dependency>
<!-- 业务组件 -->
<!-- Web 相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-security</artifactId>
</dependency>
<!-- DB 相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
</dependency>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-redis</artifactId>
</dependency>
<!-- 工具类相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-excel</artifactId>
</dependency>
<!-- Test 测试相关 -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-spring-boot-starter-test</artifactId>
</dependency>
</dependencies>
</project>