ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallCategoryController.java
@@ -40,7 +40,7 @@ /** * 查询类目列表 */ @PreAuthorize("@ss.hasPermi('mall:category:list')") // @PreAuthorize("@ss.hasPermi('mall:category:list')") @GetMapping("/list") @ApiOperation(value = "查询类目列表") public TableDataInfo list(MallCategory mallCategory) { @@ -52,7 +52,7 @@ /** * 导出类目列表 */ @PreAuthorize("@ss.hasPermi('mall:category:export')") // @PreAuthorize("@ss.hasPermi('mall:category:export')") @Log(title = "类目", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, MallCategory mallCategory) { @@ -65,7 +65,7 @@ * 获取类目详细信息 */ @ApiOperation(value = "获取类目详细信息") @PreAuthorize("@ss.hasPermi('mall:category:query')") // @PreAuthorize("@ss.hasPermi('mall:category:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(mallCategoryService.selectMallCategoryById(id)); @@ -75,7 +75,7 @@ * 新增类目 */ @ApiOperation(value = "新增类目") @PreAuthorize("@ss.hasPermi('mall:category:add')") // @PreAuthorize("@ss.hasPermi('mall:category:add')") @Log(title = "类目", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody MallCategory mallCategory) { @@ -86,7 +86,7 @@ * 修改类目 */ @ApiOperation(value = "修改类目") @PreAuthorize("@ss.hasPermi('mall:category:edit')") // @PreAuthorize("@ss.hasPermi('mall:category:edit')") @Log(title = "类目", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody MallCategory mallCategory) { @@ -97,7 +97,7 @@ * 删除类目 */ @ApiOperation(value = "删除类目") @PreAuthorize("@ss.hasPermi('mall:category:remove')") // @PreAuthorize("@ss.hasPermi('mall:category:remove')") @Log(title = "类目", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { ltkj-admin/src/main/java/com/ltkj/web/controller/mall/MallKeywordController.java
@@ -37,7 +37,7 @@ /** * 查询关键字列表 */ @PreAuthorize("@ss.hasPermi('mall:keyword:list')") // @PreAuthorize("@ss.hasPermi('mall:keyword:list')") @GetMapping("/list") public TableDataInfo list(MallKeyword mallKeyword) { startPage(); @@ -48,7 +48,7 @@ /** * 导出关键字列表 */ @PreAuthorize("@ss.hasPermi('mall:keyword:export')") // @PreAuthorize("@ss.hasPermi('mall:keyword:export')") @Log(title = "关键字", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, MallKeyword mallKeyword) { @@ -60,7 +60,7 @@ /** * 获取关键字详细信息 */ @PreAuthorize("@ss.hasPermi('mall:keyword:query')") // @PreAuthorize("@ss.hasPermi('mall:keyword:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(mallKeywordService.selectMallKeywordById(id)); @@ -69,7 +69,7 @@ /** * 新增关键字 */ @PreAuthorize("@ss.hasPermi('mall:keyword:add')") // @PreAuthorize("@ss.hasPermi('mall:keyword:add')") @Log(title = "关键字", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody MallKeyword mallKeyword) { @@ -79,7 +79,7 @@ /** * 修改关键字 */ @PreAuthorize("@ss.hasPermi('mall:keyword:edit')") // @PreAuthorize("@ss.hasPermi('mall:keyword:edit')") @Log(title = "关键字", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody MallKeyword mallKeyword) { @@ -89,7 +89,7 @@ /** * 删除关键字 */ @PreAuthorize("@ss.hasPermi('mall:keyword:remove')") // @PreAuthorize("@ss.hasPermi('mall:keyword:remove')") @Log(title = "关键字", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { ltkj-hosp/src/main/java/com/ltkj/hosp/domain/TjOrder.java
@@ -504,6 +504,17 @@ private String zhiyeZysszdw; private String rjJy; private String riJyr; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date rjJysj; private String sjJy; private String sjJyr; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date sjJysj; @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)