| | |
| | | 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.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | |
| | | @RestController |
| | | @Api(tags = "售后服务附件表") |
| | | @RequestMapping("/afterSalesService/file") |
| | | @AllArgsConstructor |
| | | public class AfterSalesServiceFileController extends BaseController { |
| | | |
| | | @Autowired |
| | | private AfterSalesServiceFileService afterSalesServiceFileService; |
| | | |
| | | @PostMapping("/upload") |