mirror of https://gitee.com/stylefeng/roses
【7.6.0】【menu】修改代码注释规范
parent
bbbe6c32c6
commit
27831db42e
|
@ -10,15 +10,12 @@ import cn.stylefeng.roses.kernel.scanner.api.annotation.PostResource;
|
|||
import cn.stylefeng.roses.kernel.sys.modular.app.entity.SysApp;
|
||||
import cn.stylefeng.roses.kernel.sys.modular.app.pojo.request.SysAppRequest;
|
||||
import cn.stylefeng.roses.kernel.sys.modular.app.service.SysAppService;
|
||||
import cn.stylefeng.roses.kernel.sys.modular.menu.pojo.response.AppGroupDetail;
|
||||
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 系统应用控制器
|
||||
|
@ -104,7 +101,7 @@ public class SysAppController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 分页查询-应用列表
|
||||
* 应用列表,查询全部
|
||||
*
|
||||
* @author liyanjun
|
||||
* @date 2023/07/02 18:28
|
||||
|
@ -113,6 +110,7 @@ public class SysAppController {
|
|||
public ResponseData<List<SysApp>> list(SysAppRequest sysAppRequest) {
|
||||
return new SuccessResponseData<>(sysAppService.findList(sysAppRequest));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改应用状态
|
||||
*
|
||||
|
|
|
@ -148,10 +148,10 @@ public class SysMenu extends BaseExpandFieldEntity implements BasePidBuildModel
|
|||
/**
|
||||
* 父级菜单名称
|
||||
*/
|
||||
@TableField("exist = false")
|
||||
@TableField(exist = false)
|
||||
@ChineseDescription("父级菜单名称")
|
||||
private String menuParentName;
|
||||
|
||||
|
||||
@Override
|
||||
public String pidBuildNodeId() {
|
||||
if (ObjectUtil.isEmpty(menuId)) {
|
||||
|
|
Loading…
Reference in New Issue