package com.linkwechat.web.controller.wecom; import java.util.List; import com.linkwechat.common.annotation.Log; import com.linkwechat.common.constant.WeConstans; import com.linkwechat.common.core.controller.BaseController; import com.linkwechat.common.core.domain.AjaxResult; import com.linkwechat.common.core.page.TableDataInfo; import com.linkwechat.common.enums.BusinessType; import com.linkwechat.common.utils.poi.ExcelUtil; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.linkwechat.wecom.domain.WeCustomer; import com.linkwechat.wecom.service.IWeCustomerService; /** * 企业微信客户Controller * * @author ruoyi * @date 2020-09-13 */ @RestController @RequestMapping("/wecom/customer") public class WeCustomerController extends BaseController { @Autowired private IWeCustomerService weCustomerService; /** * 查询企业微信客户列表 */ @PreAuthorize("@ss.hasPermi('wecom:customer:list')") @GetMapping("/list") public TableDataInfo list(WeCustomer weCustomer) { startPage(); List list = weCustomerService.selectWeCustomerList(weCustomer); return getDataTable(list); } /** * 导出企业微信客户列表 */ @PreAuthorize("@ss.hasPermi('wecom:customer:export')") @Log(title = "企业微信客户", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(WeCustomer weCustomer) { List list = weCustomerService.selectWeCustomerList(weCustomer); ExcelUtil util = new ExcelUtil(WeCustomer.class); return util.exportExcel(list, "customer"); } /** * 获取企业微信客户详细信息 */ @PreAuthorize("@ss.hasPermi('wecom:customer:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return AjaxResult.success(weCustomerService.selectWeCustomerById(id)); } /** * 修改企业微信客户 */ @PreAuthorize("@ss.hasPermi('wecom:customer:edit')") @Log(title = "企业微信客户", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody WeCustomer weCustomer) { return toAjax(weCustomerService.updateWeCustomer(weCustomer)); } /** * 客户同步接口 * @return */ @PreAuthorize("@ss.hasPermi('wecom:customer:synchWeCustomer')") @Log(title = "企业微信客户同步接口", businessType = BusinessType.DELETE) @GetMapping("/synchWeCustomer") public AjaxResult synchWeCustomer(){ weCustomerService.synchWeCustomer(); return AjaxResult.success(WeConstans.SYNCH_TIP); } }