瀏覽代碼

加入供应商类型 功能

wuxw 3 年之前
父節點
當前提交
276b6ed0a9

+ 2 - 2
java110-db/src/main/resources/mapper/scm/SupplierTypeV1ServiceDaoImplMapper.xml

@@ -17,8 +17,8 @@
 
     <!-- 查询供应商类型信息 add by wuxw 2018-07-03 -->
     <select id="getSupplierTypeInfo" parameterType="Map" resultType="Map">
-        select t.type_cd,t.type_cd typeCd,t.type_name,t.type_name typeName,t.st_id,t.st_id stId,t.status_cd,t.status_cd
-        statusCd,t.remark
+        select t.type_cd,t.type_cd typeCd,t.type_name,t.type_name typeName,t.st_id,t.st_id stId,
+        t.status_cd,t.status_cd statusCd,t.remark,t.create_time createTime
         from supplier_type t
         where 1 =1
         <if test="typeCd !=null and typeCd != ''">

+ 3 - 0
springboot/src/main/java/com/java110/boot/BootApplicationStart.java

@@ -94,6 +94,7 @@ import java.util.concurrent.TimeUnit;
         "com.java110.store",
         "com.java110.user",
         "com.java110.doc",
+        "com.java110.scm",
         "com.java110.boot"
 },
         exclude = {LiquibaseAutoConfiguration.class,
@@ -113,6 +114,7 @@ import java.util.concurrent.TimeUnit;
                 "com.java110.order.cmd",
                 "com.java110.report.cmd",
                 "com.java110.store.cmd",
+                "com.java110.scm.cmd",
                 "com.java110.user.cmd"
         })
 @EnableAsync
@@ -130,6 +132,7 @@ import java.util.concurrent.TimeUnit;
         "com.java110.order.cmd",
         "com.java110.report.cmd",
         "com.java110.store.cmd",
+        "com.java110.scm.cmd",
         "com.java110.user.cmd"
 },
         cmdDocClass = ApiDocCmdPublishing.class)