| | |
| | | import com.ltkj.common.excelConfig.ExcelUtils; |
| | | import com.ltkj.common.utils.SecurityUtils; |
| | | import com.ltkj.common.utils.StringUtils; |
| | | import com.ltkj.common.utils.poi.ExcelUtil; |
| | | import com.ltkj.framework.config.MatchUtils; |
| | | import com.ltkj.hosp.domain.*; |
| | | import com.ltkj.hosp.dto.ConfirmDto; |
| | |
| | | @PostMapping("/importTemplate") |
| | | @ApiOperation(value = "导出excel表模板") |
| | | public void importTemplate(HttpServletResponse response) { |
| | | ExcelUtils.exportTemplate(response, "体检预约Excel模板", TjReservation.class); |
| | | // ExcelUtils.exportTemplate(response, "体检预约Excel模板", TjReservation.class); |
| | | |
| | | } |
| | | |
| | | |