| | |
| | | import com.ycl.platform.domain.form.BatchEditPointForm; |
| | | import com.ycl.system.domain.group.Update; |
| | | import com.ycl.system.domain.group.Add; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.util.StringUtils; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import lombok.RequiredArgsConstructor; |
| | | |
| | | import java.io.IOException; |
| | | import java.text.ParseException; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import jakarta.validation.constraints.NotEmpty; |
| | |
| | | import com.ycl.platform.domain.query.YwPointQuery; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | /** |
| | | * 运维点位 前端控制器 |
| | |
| | | public Result select(@NotBlank(message = "请输入点位") String keyword) { |
| | | return ywPointService.select(keyword); |
| | | } |
| | | |
| | | @GetMapping("/export") |
| | | @ApiOperation(value = "导出数据", notes = "导出数据") |
| | | public void export(YwPointQuery query, HttpServletResponse response) throws IOException { |
| | | ywPointService.export(query, response); |
| | | } |
| | | |
| | | @PostMapping("/import") |
| | | @ApiOperation(value = "导入数据", notes = "导入数据") |
| | | public Result importData(MultipartFile file, |
| | | Integer unitId, |
| | | String startTime, |
| | | String endTime) throws IOException, ParseException { |
| | | Date start = null; |
| | | Date end = null; |
| | | if (-1 == unitId) { |
| | | unitId = null; |
| | | } |
| | | if (StringUtils.hasText(startTime)) { |
| | | SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); |
| | | start = format.parse(startTime); |
| | | } |
| | | if (StringUtils.hasText(startTime)) { |
| | | SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); |
| | | end = format.parse(endTime); |
| | | } |
| | | return ywPointService.importData(file, unitId, start, end); |
| | | } |
| | | |
| | | } |