mirror of
https://gitee.com/zhijiantianya/ruoyi-vue-pro.git
synced 2026-06-29 18:41:52 +08:00
新增 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 说明
66 lines
2.1 KiB
XML
66 lines
2.1 KiB
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.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>
|