3 changed files with 83 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||||||
|
package com.logpm.basic.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* 前端页面 表格字段保存对象 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ApiModel(value = "TableSetVo", description = "表格设置对象") |
||||||
|
public class TableSetVo implements Serializable { |
||||||
|
|
||||||
|
/** |
||||||
|
* 表格key |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "表格key") |
||||||
|
private String tableKey; |
||||||
|
|
||||||
|
/** |
||||||
|
* 表格表头设置内容 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "表格设置内容") |
||||||
|
private String tableSetCongig; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,50 @@ |
|||||||
|
package com.logpm.basic.controller; |
||||||
|
|
||||||
|
import com.logpm.basic.vo.TableSetVo; |
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
import org.springblade.common.cache.CacheNames; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.redis.cache.BladeRedis; |
||||||
|
import org.springblade.core.secure.utils.AuthUtil; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
@RestController |
||||||
|
@Slf4j |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/commonTable") |
||||||
|
@Api(value = "自定义表格内容", tags = "自定义表格内容") |
||||||
|
public class CommonFrontTableController extends BladeController { |
||||||
|
|
||||||
|
private final BladeRedis bladeRedis; |
||||||
|
|
||||||
|
@PostMapping("/saveTableSeting") |
||||||
|
@ApiOperation(value = "保存表格配置", notes = "传入tableSetVo") |
||||||
|
public R saveTableSeting(@RequestBody TableSetVo tableSetVo){ |
||||||
|
|
||||||
|
|
||||||
|
try { |
||||||
|
String key = CacheNames.tenantKey(AuthUtil.getTenantId(),CacheNames.USER_TABLE_SET+tableSetVo.getTableKey(),AuthUtil.getUserId().toString()); |
||||||
|
bladeRedis.setEx(key, tableSetVo.getTableSetCongig(),3*30*24*60*60L); |
||||||
|
return R.success("保存成功"); |
||||||
|
} catch (Exception e) { |
||||||
|
log.error("saveTableSeting",e); |
||||||
|
return R.fail("保存失败"); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping ("/getTableSeting") |
||||||
|
@ApiOperation(value = "获取表格配置", notes = "tableKey") |
||||||
|
public R getTableSeting(@RequestParam("tableKey") String tableKey){ |
||||||
|
|
||||||
|
String key = CacheNames.tenantKey(AuthUtil.getTenantId(),CacheNames.USER_TABLE_SET+tableKey,AuthUtil.getUserId().toString()); |
||||||
|
Object o = bladeRedis.get(key); |
||||||
|
return R.data(o); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue