parent
787959841b
commit
0489133d6d
16 changed files with 83 additions and 328 deletions
@ -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 { |
||||
} |
@ -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,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); |
||||
} |
||||
|
||||
} |
@ -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; |
||||
} |
||||
} |
Loading…
Reference in new issue