| | |
| | | import com.zy.crm.manager.service.CstmrService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.*; |
| | | |
| | | @RestController |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /*************************************** 数据相关 ***********************************************/ |
| | | |
| | | /** |
| | | * excel导入 |
| | | */ |
| | | @PostMapping(value = "/cstmr/excel/import/auth") |
| | | @ManagerAuth |
| | | public R cstmrExcelImport(MultipartFile file) throws IOException { |
| | | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * excel导出 |
| | | */ |
| | | @PostMapping(value = "/cstmr/excel/export/auth") |
| | | @ManagerAuth |
| | | public void cstmrExcelExport(HttpServletResponse response) throws IOException { |
| | | |
| | | } |
| | | |
| | | } |