Commit edef6ab3 by huluobin

# fee

parent db69fe2a
...@@ -14,7 +14,7 @@ pipeline { ...@@ -14,7 +14,7 @@ pipeline {
stage('interfaces 编译打包部署') { stage('interfaces 编译打包部署') {
steps { steps {
sh ''' sh '''
git checkout 3.0 git checkout 3.0-features
git pull git pull
cd cost-interfaces cd cost-interfaces
mvn clean package mvn clean package
...@@ -24,7 +24,7 @@ pipeline { ...@@ -24,7 +24,7 @@ pipeline {
stage('service 编译打包部署') { stage('service 编译打包部署') {
steps { steps {
sh ''' sh '''
git checkout 3.0 git checkout 3.0-features
git pull git pull
cd cost-service cd cost-service
mvn clean package docker:build -DpushImage''' mvn clean package docker:build -DpushImage'''
......
...@@ -34,5 +34,6 @@ public interface CostTypeDao extends BaseMapper<CostTypeDomain> { ...@@ -34,5 +34,6 @@ public interface CostTypeDao extends BaseMapper<CostTypeDomain> {
//根据费用类型名称和类型查询 //根据费用类型名称和类型查询
CostTypeDomain selectByNameAndType(@Param("name") String name, @Param("type") Integer type); CostTypeDomain selectByNameAndType(@Param("name") String name, @Param("type") Integer type);
//
List<CostTypeDomain> selectTestType(); List<CostTypeDomain> selectTestType();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment