|
|
|
@ -5,8 +5,10 @@ import com.ruoyi.common.core.controller.BaseController;
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
|
import com.ruoyi.common.utils.uuid.Seq;
|
|
|
|
|
import com.ruoyi.system.domain.TdPropertyEment;
|
|
|
|
|
import com.ruoyi.system.domain.TdPropertyInfo;
|
|
|
|
|
import com.ruoyi.web.controller.manager.TdPropertyEmentManager;
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
@ -50,6 +52,20 @@ public class TdPropertyEmentController extends BaseController {
|
|
|
|
|
return getDataTable(tdPropertyEments);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导出设备管理列表
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:property:export")
|
|
|
|
|
@Log(title = "涉密设备", businessType = BusinessType.EXPORT)
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult export(TdPropertyEment tdPropertyEment) {
|
|
|
|
|
List<TdPropertyEment> tdPropertyEments = tdPropertyEmentManager.selectEmentList(tdPropertyEment);
|
|
|
|
|
ExcelUtil<TdPropertyEment> util = new ExcelUtil<>(TdPropertyEment.class);
|
|
|
|
|
return util.exportExcel(tdPropertyEments, "涉密设备数据");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增设备
|
|
|
|
|
*/
|
|
|
|
@ -95,8 +111,8 @@ public class TdPropertyEmentController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 查询所有设备
|
|
|
|
|
*
|
|
|
|
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/getList")
|
|
|
|
|