| | |
| | | |
| | | import com.ruoyi.basic.pojo.Customer; |
| | | import com.ruoyi.basic.service.ICustomerService; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.PutMapping; |
| | |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/system/customer") |
| | | @AllArgsConstructor |
| | | public class CustomerController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ICustomerService customerService; |
| | | |
| | | /** |
| | | * 查询客户档案列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:customer:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(Customer customer) |
| | | { |
| | |
| | | /** |
| | | * 导出客户档案列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:customer:export')") |
| | | @Log(title = "客户档案", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, Customer customer) |
| | |
| | | /** |
| | | * 获取客户档案详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:customer:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | |
| | | /** |
| | | * 新增客户档案 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:customer:add')") |
| | | @Log(title = "客户档案", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @PostMapping ("/addCustomer") |
| | | public AjaxResult add(@RequestBody Customer customer) |
| | | { |
| | | return toAjax(customerService.insertCustomer(customer)); |
| | |
| | | /** |
| | | * 修改客户档案 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:customer:edit')") |
| | | @Log(title = "客户档案", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody Customer customer) |
| | |
| | | /** |
| | | * 删除客户档案 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:customer:remove')") |
| | | @Log(title = "客户档案", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |