|
|
|
|
@ -62,6 +62,18 @@ public class DaPicturesRecardController extends BaseController
|
|
|
|
|
return getDataTable(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 任务记录查询相关 档案图片信息记录列表
|
|
|
|
|
*/
|
|
|
|
|
// @PreAuthorize("@ss.hasPermi('dangan:pictureRecard:list')")
|
|
|
|
|
@GetMapping("/listByIds")
|
|
|
|
|
public TableDataInfo listByIds(Long[] ids)
|
|
|
|
|
{
|
|
|
|
|
startPage();
|
|
|
|
|
List<DaPicturesRecard> list = daPicturesRecardService.selectDaPicturesRecardByIds(ids);
|
|
|
|
|
return getDataTable(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导出档案图片信息记录列表
|
|
|
|
|
*/
|
|
|
|
|
|