crms项目改动

master
shijie 5 years ago
parent 787959841b
commit 0489133d6d
  1. 18
      dq-financial-api/src/main/java/com/daqing/financial/crms/CustomerControllerApi.java
  2. 4
      dq-financial-api/src/main/java/com/daqing/financial/crms/TestFeignControllerApi.java
  3. 5
      dq-financial-crms/pom.xml
  4. 83
      dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/CompanyCustomerController.java
  5. 28
      dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/CustomerController.java
  6. 82
      dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/PersonalCustomerController.java
  7. 53
      dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/TestFeignController.java
  8. 20
      dq-financial-crms/src/main/java/com/daqing/financial/crms/service/CompanyCustomerService.java
  9. 20
      dq-financial-crms/src/main/java/com/daqing/financial/crms/service/PersonalCustomerService.java
  10. 29
      dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/CompanyCustomerServiceImpl.java
  11. 29
      dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/PersonalCustomerServiceImpl.java
  12. 2
      dq-financial-crms/src/main/resources/mapper/crms/CustomerDao.xml
  13. 3
      dq-financial-hrms/src/main/java/com/daqing/financial/hrms/controller/DeptController.java
  14. 7
      dq-financial-hrms/src/main/java/com/daqing/financial/hrms/feign/CrmsFeignService.java
  15. 18
      dq-framework-common/src/main/java/com/daqing/framework/config/MybatisPlusConfig.java
  16. 10
      dq-framework-model/src/main/java/com/daqing/framework/domain/crms/CustomerEntity.java

@ -0,0 +1,18 @@
package com.daqing.financial.crms;
import com.daqing.framework.model.response.ResponseResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import java.util.Map;
@Api(value = "客户相关操作", tags = "提供用户测评信息增删改查等相关方法")
public interface CustomerControllerApi {
/**
* 列表展示
*/
@ApiOperation(value = "列表展示", notes = "列表展示")
ResponseResult list(Map<String, Object> params);
}

@ -1,4 +0,0 @@
package com.daqing.financial.crms;
public interface TestFeignControllerApi {
}

@ -35,6 +35,11 @@
<artifactId>dq-framework-utils</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.daqing.financial</groupId>
<artifactId>dq-financial-api</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>

@ -1,83 +0,0 @@
package com.daqing.financial.crms.controller;
import java.util.Arrays;
import java.util.Map;
import com.daqing.framework.model.response.ResponseResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.daqing.framework.domain.crms.CompanyCustomerEntity;
import com.daqing.financial.crms.service.CompanyCustomerService;
import com.daqing.framework.utils.PageUtils;
/**
* 企业类型客户信息表
*
* @author gongsj
* @email gongsj@gmail.com
* @date 2020-09-08 09:57:32
*/
@RestController
@RequestMapping("crms/companycustomer")
public class CompanyCustomerController {
@Autowired
private CompanyCustomerService companyCustomerService;
/**
* 列表
*/
@GetMapping("/list")
//@RequiresPermissions("crms:companycustomer:list")
public ResponseResult list(@RequestParam Map<String, Object> params){
PageUtils page = companyCustomerService.queryPage(params);
return ResponseResult.SUCCESS();
}
/**
* 信息
*/
@GetMapping("/info/{id}")
//@RequiresPermissions("crms:companycustomer:info")
public ResponseResult info(@PathVariable("id") Long id){
CompanyCustomerEntity companyCustomer = companyCustomerService.getById(id);
return ResponseResult.SUCCESS();
}
/**
* 保存
*/
@PostMapping("/save")
//@RequiresPermissions("crms:companycustomer:save")
public ResponseResult save(@RequestBody CompanyCustomerEntity companyCustomer){
companyCustomerService.save(companyCustomer);
return ResponseResult.SUCCESS();
}
/**
* 修改
*/
@PutMapping("/update")
//@RequiresPermissions("crms:companycustomer:update")
public ResponseResult update(@RequestBody CompanyCustomerEntity companyCustomer){
companyCustomerService.updateById(companyCustomer);
return ResponseResult.SUCCESS();
}
/**
* 删除
*/
@DeleteMapping("/delete")
//@RequiresPermissions("crms:companycustomer:delete")
public ResponseResult delete(@RequestBody Long[] ids){
companyCustomerService.removeByIds(Arrays.asList(ids));
return ResponseResult.SUCCESS();
}
}

@ -1,5 +1,7 @@
package com.daqing.financial.crms.controller;
import com.daqing.financial.crms.CustomerControllerApi;
import com.daqing.financial.crms.feign.HrmsFeignService;
import com.daqing.financial.crms.service.CustomerService;
import com.daqing.framework.domain.crms.CustomerEntity;
import com.daqing.framework.model.response.ResponseResult;
@ -7,8 +9,7 @@ import com.daqing.framework.utils.PageUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.Arrays;
import java.util.Map;
import java.util.*;
/**
@ -20,10 +21,14 @@ import java.util.Map;
*/
@RestController
@RequestMapping("crms/customer")
public class CustomerController {
public class CustomerController implements CustomerControllerApi {
@Autowired
private CustomerService customerService;
@Autowired
HrmsFeignService hrmsFeignService;
/**
* 列表
*/
@ -31,8 +36,23 @@ public class CustomerController {
//@RequiresPermissions("crms:customer:list")
public ResponseResult list(@RequestParam Map<String, Object> params) {
PageUtils page = customerService.queryPage(params);
List<String> list = new ArrayList<>();
list.add("张三");
list.add("李四");
list.add("王五");
list.add("赵六");
list.add("孙七");
return new ResponseResult(true, 200, list, "success");
}
return ResponseResult.SUCCESS();
/**
* 列表
*/
@GetMapping("/hrms_list")
//@RequiresPermissions("hrms:dept:list")
public ResponseResult hrmsList() {
Map<String, Object> params = new HashMap<>();
return hrmsFeignService.list(params);
}

@ -1,82 +0,0 @@
package com.daqing.financial.crms.controller;
import com.daqing.financial.crms.service.PersonalCustomerService;
import com.daqing.framework.domain.crms.PersonalCustomerEntity;
import com.daqing.framework.model.response.ResponseResult;
import com.daqing.framework.utils.PageUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.Arrays;
import java.util.Map;
/**
* 个人类型客户信息表
*
* @author gongsj
* @email gongsj@gmail.com
* @date 2020-09-08 09:57:32
*/
@RestController
@RequestMapping("crms/personalcustomer")
public class PersonalCustomerController {
@Autowired
private PersonalCustomerService personalCustomerService;
/**
* 列表
*/
@GetMapping("/list")
//@RequiresPermissions("crms:personalcustomer:list")
public ResponseResult list(@RequestParam Map<String, Object> params) {
PageUtils page = personalCustomerService.queryPage(params);
return ResponseResult.SUCCESS();
}
/**
* 信息
*/
@GetMapping("/info/{id}")
//@RequiresPermissions("crms:personalcustomer:info")
public ResponseResult info(@PathVariable("id") Long id) {
PersonalCustomerEntity personalCustomer = personalCustomerService.getById(id);
return ResponseResult.SUCCESS();
}
/**
* 保存
*/
@PostMapping("/save")
//@RequiresPermissions("crms:personalcustomer:save")
public ResponseResult save(@RequestBody PersonalCustomerEntity personalCustomer) {
personalCustomerService.save(personalCustomer);
return ResponseResult.SUCCESS();
}
/**
* 修改
*/
@PutMapping("/update")
//@RequiresPermissions("crms:personalcustomer:update")
public ResponseResult update(@RequestBody PersonalCustomerEntity personalCustomer) {
personalCustomerService.updateById(personalCustomer);
return ResponseResult.SUCCESS();
}
/**
* 删除
*/
@DeleteMapping("/delete")
//@RequiresPermissions("crms:personalcustomer:delete")
public ResponseResult delete(@RequestBody Long[] ids) {
personalCustomerService.removeByIds(Arrays.asList(ids));
return ResponseResult.SUCCESS();
}
}

@ -1,53 +0,0 @@
package com.daqing.financial.crms.controller;
import com.daqing.financial.crms.feign.HrmsFeignService;
import com.daqing.framework.model.response.ResponseResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 记录部门信息
*
* @author gongsj
* @email gongsj@gmail.com
* @date 2020-09-07 16:26:04
*/
@RestController
@RequestMapping("crms")
public class TestFeignController {
@Autowired
HrmsFeignService hrmsFeignService;
/**
* 列表
*/
@GetMapping("/list")
//@RequiresPermissions("hrms:dept:list")
public ResponseResult list() {
List<String> list = new ArrayList<>();
list.add("张三");
list.add("李四");
list.add("王五");
list.add("赵六");
list.add("孙七");
return new ResponseResult(true, 200, list, "success");
}
/**
* 列表
*/
@GetMapping("/hrms_list")
//@RequiresPermissions("hrms:dept:list")
public ResponseResult hrmsList() {
Map<String, Object> params = new HashMap<>();
return hrmsFeignService.list(params);
}
}

@ -1,20 +0,0 @@
package com.daqing.financial.crms.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.daqing.framework.domain.crms.CompanyCustomerEntity;
import com.daqing.framework.utils.PageUtils;
import java.util.Map;
/**
* 企业类型客户信息表
*
* @author gongsj
* @email gongsj@gmail.com
* @date 2020-09-08 09:57:32
*/
public interface CompanyCustomerService extends IService<CompanyCustomerEntity> {
PageUtils queryPage(Map<String, Object> params);
}

@ -1,20 +0,0 @@
package com.daqing.financial.crms.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.daqing.framework.utils.PageUtils;
import com.daqing.framework.domain.crms.PersonalCustomerEntity;
import java.util.Map;
/**
* 个人类型客户信息表
*
* @author gongsj
* @email gongsj@gmail.com
* @date 2020-09-08 09:57:32
*/
public interface PersonalCustomerService extends IService<PersonalCustomerEntity> {
PageUtils queryPage(Map<String, Object> params);
}

@ -1,29 +0,0 @@
package com.daqing.financial.crms.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.daqing.financial.crms.dao.CompanyCustomerDao;
import com.daqing.financial.crms.service.CompanyCustomerService;
import com.daqing.framework.domain.crms.CompanyCustomerEntity;
import com.daqing.framework.utils.PageUtils;
import com.daqing.framework.utils.Query;
import org.springframework.stereotype.Service;
import java.util.Map;
@Service("companyCustomerService")
public class CompanyCustomerServiceImpl extends ServiceImpl<CompanyCustomerDao, CompanyCustomerEntity> implements CompanyCustomerService {
@Override
public PageUtils queryPage(Map<String, Object> params) {
IPage<CompanyCustomerEntity> page = this.page(
new Query<CompanyCustomerEntity>().getPage(params),
new QueryWrapper<CompanyCustomerEntity>()
);
return new PageUtils(page);
}
}

@ -1,29 +0,0 @@
package com.daqing.financial.crms.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.daqing.financial.crms.dao.PersonalCustomerDao;
import com.daqing.financial.crms.service.PersonalCustomerService;
import com.daqing.framework.domain.crms.PersonalCustomerEntity;
import com.daqing.framework.utils.PageUtils;
import com.daqing.framework.utils.Query;
import org.springframework.stereotype.Service;
import java.util.Map;
@Service("personalCustomerService")
public class PersonalCustomerServiceImpl extends ServiceImpl<PersonalCustomerDao, PersonalCustomerEntity> implements PersonalCustomerService {
@Override
public PageUtils queryPage(Map<String, Object> params) {
IPage<PersonalCustomerEntity> page = this.page(
new Query<PersonalCustomerEntity>().getPage(params),
new QueryWrapper<PersonalCustomerEntity>()
);
return new PageUtils(page);
}
}

@ -14,6 +14,8 @@
<result property="phone" column="phone"/>
<result property="password" column="password"/>
<result property="wechatId" column="wechat_id"/>
<result property="delOrNot" column="del_or_not"/>
<result property="status" column="status"/>
<result property="createTime" column="create_time"/>
<result property="motifyTime" column="motify_time"/>
</resultMap>

@ -1,6 +1,7 @@
package com.daqing.financial.hrms.controller;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import com.daqing.financial.hrms.feign.CrmsFeignService;
@ -35,7 +36,7 @@ public class DeptController {
@GetMapping("/crms_list")
//@RequiresPermissions("hrms:dept:list")
public ResponseResult crmsList(){
return crmsFeignService.list();
return crmsFeignService.list(new HashMap<>());
}
/**

@ -3,6 +3,9 @@ package com.daqing.financial.hrms.feign;
import com.daqing.framework.model.response.ResponseResult;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.Map;
/**
* 这是一个声明式的远程调用
@ -10,7 +13,7 @@ import org.springframework.web.bind.annotation.GetMapping;
@FeignClient("dq-financial-crms")
public interface CrmsFeignService {
@GetMapping("/crms/list")
ResponseResult list();
@GetMapping("/crms/customer/list")
ResponseResult list(@RequestParam Map<String, Object> params);
}

@ -0,0 +1,18 @@
package com.daqing.framework.config;
import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MybatisPlusConfig {
/**
* mybatis-plus分页插件
*/
@Bean
public PaginationInterceptor paginationInterceptor() {
PaginationInterceptor page = new PaginationInterceptor();
page.setDialectType("mysql");
return page;
}
}

@ -12,7 +12,7 @@ import lombok.Data;
*
* @author gongsj
* @email gongsj@gmail.com
* @date 2020-09-08 09:57:32
* @date 2020-09-08 11:23:28
*/
@Data
@TableName("crms_customer")
@ -56,6 +56,14 @@ public class CustomerEntity implements Serializable {
* 微信唯一标识
*/
private String wechatId;
/**
* 0未删除1已删除
*/
private Integer delOrNot;
/**
* 0启用1禁用
*/
private Integer status;
/**
* 创建时间
*/

Loading…
Cancel
Save