| | |
| | | import com.ruoyi.framework.web.domain.AjaxResult; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | @RestController |
| | | @Api(tags = "客户拜访") |
| | | @RequestMapping("/customerVisits") |
| | | @AllArgsConstructor |
| | | public class CustomerVisitsController extends BaseController { |
| | | |
| | | @Autowired |
| | | private CustomerVisitsServiceImpl customerVisitsService; |
| | | |
| | | @GetMapping("/listPage") |