Browse Source

新增:企业类型管理。

lym 4 years ago
parent
commit
6af5678da6

+ 8 - 0
carbon-admin/carbon-admin-service/src/main/java/com/hcloud/microserver/bank/service/CustomerCompanyTypeService.java

@@ -16,4 +16,12 @@ public interface CustomerCompanyTypeService extends BaseServie<CustomerCompanyTy
      * @return
      */
     public PageInfo<List<CustomerCompanyType>> selectList(CustomerCompanyTypeForm customerCompanyTypeForm);
+
+    /**
+     * 企业类型列表,不分页
+     * lym
+     * @param customerCompanyTypeForm
+     * @return
+     */
+    public List<CustomerCompanyType> selectCompanyTypeList(CustomerCompanyTypeForm customerCompanyTypeForm);
 }

+ 5 - 0
carbon-admin/carbon-admin-service/src/main/java/com/hcloud/microserver/bank/service/impl/CustomerCompanyTypeServiceImpl.java

@@ -88,4 +88,9 @@ public class CustomerCompanyTypeServiceImpl implements CustomerCompanyTypeServic
         List<CustomerCompanyType> list = customerCompanyTypeMapper.selectList(customerCompanyTypeForm);
         return new PageInfo(list);
     }
+
+    @Override
+    public List<CustomerCompanyType> selectCompanyTypeList(CustomerCompanyTypeForm customerCompanyTypeForm) {
+        return customerCompanyTypeMapper.selectList(customerCompanyTypeForm);
+    }
 }