|
@@ -5,6 +5,7 @@ import cn.com.taiji.sdk.model.comm.protocol.eoms.company.B2bCompanyModel;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.jkcredit.invoice.annotation.LoginRequired;
|
|
|
+import com.jkcredit.invoice.annotation.annotationdes.AuthenticationInterceptor;
|
|
|
import com.jkcredit.invoice.model.entity.customer.Customer;
|
|
|
import com.jkcredit.invoice.model.entity.CustomerRecharge;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerRec;
|
|
@@ -82,7 +83,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/findCustomerRecharge")
|
|
|
@ApiOperation(value="分页查询客户充值信息", notes="分页查询客户充值信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR findCustomerRecharge(Page page, CustomerRecharge customerRecharge) {
|
|
|
|
|
|
return new RespR(customerRechargeService.findAllCustomerRecharge(page, customerRecharge));
|
|
@@ -98,7 +99,6 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/findCustomerRechargeMoney")
|
|
|
@ApiOperation(value="分页查询客户端客户充值信息", notes="分页查询客户端客户充值信息")
|
|
|
- @LoginRequired
|
|
|
public RespR findCustomerRechargeMoney(Page page, CustomerRecharge customerRecharge) {
|
|
|
|
|
|
return new RespR(customerRechargeService.findAllCustomerRechargeMoney(page, customerRecharge));
|
|
@@ -110,7 +110,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@GetMapping("/findCustomerRecListExport")
|
|
|
@ApiOperation(value="客户信息导出", notes="客户信息导出")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public void findCustomerRechargeExport(String customerName,String companyName,String companyBelongName,HttpServletResponse response) throws Exception{
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
|
customerRec.setCustomerName(customerName);
|
|
@@ -160,7 +160,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/updateCustomer")
|
|
|
@ApiOperation(value="更新用户", notes="更新用户")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR updateCustomer(@RequestBody Customer customer) {
|
|
|
|
|
|
return new RespR(customerService.updateCustomer(customer));
|
|
@@ -171,7 +171,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/customeRecStop")
|
|
|
@ApiOperation(value="停用备案用户", notes="停用备案用户")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR customeRecStop(@RequestBody CustomerRec customerRec) {
|
|
|
customerRec.setRecStatus(4);
|
|
|
return customerService.updateCustomerRecStatus(customerRec);
|
|
@@ -182,7 +182,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/customerRecAdd")
|
|
|
@ApiOperation(value="手工添加备案信息", notes="手工添加备案信息")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR customerRecAdd(@RequestBody CustomerRec customerRec) {
|
|
|
customerRec.setInterType(1);
|
|
|
List<CustomerRec> customerRecList = new ArrayList<>();
|
|
@@ -239,7 +239,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/customRecharge")
|
|
|
@ApiOperation(value="账号充值", notes="账号充值")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR customRecharge(@RequestBody CustomerRecharge customerRecharge) {
|
|
|
|
|
|
return new RespR(customerService.customRecharge(customerRecharge));
|
|
@@ -247,14 +247,14 @@ public class CustomerController {
|
|
|
|
|
|
@PostMapping("/customeRec")
|
|
|
@ApiOperation(value="用户备案确认", notes="用户备案确认")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR customeRec(@RequestBody CustomerRec customerRec){
|
|
|
return customerService.customeRec(customerRec);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/contractAdd")
|
|
|
@ApiOperation(value="协议上传确认", notes="协议上传确认")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR contractAdd(@RequestBody CustomerRec customerRec){
|
|
|
return customerService.contractAdd(customerRec);
|
|
|
}
|
|
@@ -331,7 +331,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/findCustomerRecTimeList")
|
|
|
@ApiOperation(value="客户备案预警查询", notes="客户备案预警查询")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR findCustomerRecTimeList(Page page, CustomerRec customerRec) {
|
|
|
IPage ipage = null;
|
|
|
if(StringUtils.isNotEmpty(customerRec.getServiceEndTime()) && !"null".equals(customerRec.getServiceEndTime())){
|
|
@@ -372,7 +372,7 @@ public class CustomerController {
|
|
|
*/
|
|
|
@PostMapping("/findCustomerMoney")
|
|
|
@ApiOperation(value="分页查询余额告警用户", notes="分页查询余额告警用户")
|
|
|
- @LoginRequired
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
public RespR getCustomerMoneysByPage(Page page, Customer customer) {
|
|
|
Param param = paramService.getParamsByParamName("CUST_MONEY_WARNING");
|
|
|
IPage ipage = null;
|