| | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.ltkj.common.core.domain.model.LoginUser; |
| | | import com.ltkj.common.core.redis.RedisCache; |
| | | import com.ltkj.framework.config.MatchUtils; |
| | | import com.ltkj.hosp.domain.TjCustomer; |
| | |
| | | import com.ltkj.hosp.service.ITjOtherCheckService; |
| | | import com.ltkj.hosp.service.ITjProjectService; |
| | | import com.ltkj.hosp.service.TjAsyncService; |
| | | import com.ltkj.system.domain.SysLogininfor; |
| | | import com.ltkj.system.service.ISysConfigService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | public AjaxResult remove(@PathVariable String[] ids) { |
| | | return toAjax(tjOtherCheckService.deleteTjOtherCheckByIds(ids)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查图文列表 |
| | | */ |
| | | @GetMapping("/getPhotoList") |
| | | @ApiOperation(value = "查图文列表") |
| | | public AjaxResult getPhotoList(String tjNumber,String proId) { |
| | | LambdaQueryWrapper<TjOtherCheck> wq=new LambdaQueryWrapper<>(); |
| | | wq.eq(TjOtherCheck::getTjNum,tjNumber); |
| | | wq.eq(TjOtherCheck::getProId,proId); |
| | | wq.orderByDesc(TjOtherCheck::getCreateTime); |
| | | List<TjOtherCheck> list = tjOtherCheckService.list(wq); |
| | | return AjaxResult.success(list); |
| | | } |
| | | } |