55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
|
|
//package com.sercurityControl.proteam.controller;
|
||
|
|
//
|
||
|
|
//import com.securityControl.common.core.web.controller.BaseController;
|
||
|
|
//import com.securityControl.common.core.web.page.TableDataInfo;
|
||
|
|
//import com.sercurityControl.proteam.domain.TImageLibrary;
|
||
|
|
//import com.sercurityControl.proteam.service.TImageLibraryService;
|
||
|
|
////
|
||
|
|
//import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
//import org.springframework.web.bind.annotation.GetMapping;
|
||
|
|
//import org.springframework.web.bind.annotation.PathVariable;
|
||
|
|
//import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
//import org.springframework.web.bind.annotation.RestController;
|
||
|
|
//import com.securityControl.common.core.web.domain.AjaxResult;
|
||
|
|
//
|
||
|
|
///**
|
||
|
|
// * 照片库(TImageLibrary)表控制层
|
||
|
|
// *
|
||
|
|
// * @author makejava
|
||
|
|
// * @since 2023-01-09 14:07:03
|
||
|
|
// */
|
||
|
|
//@RestController
|
||
|
|
//@RequestMapping("tImageLibrary")
|
||
|
|
//public class TImageLibraryController extends BaseController {
|
||
|
|
//
|
||
|
|
// @Autowired
|
||
|
|
// private TImageLibraryService tImageLibraryService;
|
||
|
|
//
|
||
|
|
// private VideoUtil videoUtil;
|
||
|
|
//
|
||
|
|
// /**
|
||
|
|
// * 分页查询
|
||
|
|
// *
|
||
|
|
// * @param tImageLibrary 筛选条件
|
||
|
|
// * @return 查询结果
|
||
|
|
// */
|
||
|
|
// @GetMapping("/queryByPage")
|
||
|
|
// public TableDataInfo queryByPage(TImageLibrary tImageLibrary) {
|
||
|
|
// startPage();
|
||
|
|
// return getDataTable(tImageLibraryService.queryByPage(tImageLibrary));
|
||
|
|
// }
|
||
|
|
//
|
||
|
|
// /**
|
||
|
|
// * 通过主键查询单条数据
|
||
|
|
// *
|
||
|
|
// * @param id 主键
|
||
|
|
// * @return 单条数据
|
||
|
|
// */
|
||
|
|
// @GetMapping("/{id}")
|
||
|
|
// public AjaxResult queryById(@PathVariable("id") String id) {
|
||
|
|
// return success(tImageLibraryService.queryById(id));
|
||
|
|
// }
|
||
|
|
//
|
||
|
|
//}
|
||
|
|
//
|