Browse Source

引入字典表组件

master
WendyYang 1 year ago
parent
commit
e42dc8e086
4 changed files with 16 additions and 2 deletions
  1. +4
    -1
      pmapi/pom.xml
  2. +6
    -0
      pmapi/src/main/java/com/ningdatech/pmapi/common/errorcode/AppErrorCode.java
  3. +1
    -1
      pmapi/src/main/resources/application-dev.yml
  4. +5
    -0
      pom.xml

+ 4
- 1
pmapi/pom.xml View File

@@ -228,7 +228,10 @@
<scope>system</scope>
<systemPath>${project.basedir}/src/lib/kingbase8-8.2.0.jar</systemPath>
</dependency>

<dependency>
<groupId>com.ningdatech</groupId>
<artifactId>nd-dict-starter</artifactId>
</dependency>
<dependency>
<groupId>com.kingbase.dialect</groupId>
<artifactId>kingbase8-8.2.0</artifactId>


+ 6
- 0
pmapi/src/main/java/com/ningdatech/pmapi/common/errorcode/AppErrorCode.java View File

@@ -1,5 +1,11 @@
package com.ningdatech.pmapi.common.errorcode;

import lombok.Getter;

/**
* @author LiuXinXin
*/
@Getter
public enum AppErrorCode {
USER(100),



+ 1
- 1
pmapi/src/main/resources/application-dev.yml View File

@@ -120,7 +120,7 @@ flowable:
rest-api-enabled: false
idm:
enabled: false
cmmn:
common:
enabled: false
dmn:
enabled: false


+ 5
- 0
pom.xml View File

@@ -88,6 +88,11 @@
</dependency>
<dependency>
<groupId>com.ningdatech</groupId>
<artifactId>nd-dict-starter</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.ningdatech</groupId>
<artifactId>nd-basic</artifactId>
<version>1.0.0</version>
</dependency>


Loading…
Cancel
Save