小板信息增加字段:侧面造型,二维/侧面二维 刀路

This commit is contained in:
liuzhaotian
2025-05-16 15:02:02 +08:00
parent a0b2462f58
commit dc05d230f5
14 changed files with 150 additions and 25 deletions
@@ -63,6 +63,9 @@ public class MenuRespVO {
@Schema(description = "是否总是显示", example = "false")
private Boolean alwaysShow;
@Schema(description = "权限功能描述")
private String description;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "时间戳格式")
private LocalDateTime createTime;
@@ -71,4 +71,7 @@ public class MenuSaveVO {
@Schema(description = "是否总是显示", example = "false")
private Boolean alwaysShow;
@Schema(description = "权限功能描述")
private String description;
}
@@ -106,5 +106,11 @@ public class MenuDO extends BaseDO {
* 如果为 false 时,当该菜单只有一个子菜单时,不展示自己,直接展示子菜单
*/
private Boolean alwaysShow;
/**
* 权限功能描述
*
*/
private String description;
}
@@ -1,7 +1,5 @@
package com.cf.imes.module.system.job.demo;
import com.cf.imes.framework.organ.core.job.OrganJob;
/*import com.xxl.job.core.handler.annotation.XxlJob;*/
import org.springframework.stereotype.Component;
@Component
@@ -349,11 +349,4 @@ public class TokenConfigServiceImpl implements TokenConfigService{
// // 安全密钥生成
// public static String generateSecureSecretKey() {
// SecretKey key = Keys.secretKeyFor(SignatureAlgorithm.HS256);
// return Base64.getEncoder().encodeToString(key.getEncoded());
// }
}