mirror of https://gitee.com/topiam/eiam
⚡ 优化
parent
5845e254f4
commit
6ab9891d28
|
@ -119,7 +119,7 @@ public class AppRepositoryCustomizedImpl implements AppRepositoryCustomized {
|
|||
*/
|
||||
public Page<AppEntity> getAppList(AppQuery appQuery, Pageable pageable) {
|
||||
//@formatter:off
|
||||
StringBuilder builder = new StringBuilder("SELECT * FROM( SELECT app.* FROM app LEFT JOIN app_group_association `group` ON app.id_ = `group`.app_id) app WHERE app.is_deleted = 0");
|
||||
StringBuilder builder = new StringBuilder("SELECT app.* FROM app LEFT JOIN app_group_association `group` ON app.id_ = `group`.app_id WHERE app.is_deleted=0");
|
||||
|
||||
//应用名称
|
||||
if (StringUtils.isNoneBlank(appQuery.getName())) {
|
||||
|
|
|
@ -40,25 +40,25 @@ public class AppUpdateParam implements Serializable {
|
|||
*/
|
||||
@Schema(description = "应用id")
|
||||
@NotNull(message = "ID不能为空")
|
||||
private Long id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 应用名称
|
||||
*/
|
||||
@Schema(description = "应用名称")
|
||||
private String name;
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 应用图标
|
||||
*/
|
||||
@Schema(description = "应用图标")
|
||||
private String icon;
|
||||
private String icon;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@Schema(description = "备注")
|
||||
private String remark;
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 应用分组id
|
||||
|
|
Loading…
Reference in New Issue