[feat] 添加

This commit is contained in:
2024-11-25 21:35:03 +08:00
parent 9acf7237be
commit 46f43d25aa
30 changed files with 1147 additions and 8 deletions

View File

@ -0,0 +1,27 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-pm</artifactId>
<version>${revision}</version>
</parent>
<artifactId>yudao-module-pm-api</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
项目管理 API,暴露给业务系统调用
</description>
<dependencies>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-common</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,4 @@
package cn.iocoder.yudao.module.pm.enums;
public interface DictTypeConstants {
}

View File

@ -0,0 +1,8 @@
package cn.iocoder.yudao.module.pm.enums;
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
public interface ErrorCodeConstants {
ErrorCode CUSTOMER_NOT_EXISTS = new ErrorCode(1_060_000_000, "客户信息不存在");
ErrorCode SUBCONTRACTOR_NOT_EXISTS = new ErrorCode(1_061_000_000, "供应商信息不存在");
}

View File

@ -0,0 +1 @@
package cn.iocoder.yudao.module.pm;