Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
黄嘉阳
/
iot-platform-server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
55bde74d
authored
Sep 12, 2023
by
lzy
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
更新
parent
c156b44b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
3 deletions
db/platAuth.sql
saas-module/src/main/java/com/makeit/controller/sys/SaasChinaAreaController.java
server-service/src/main/java/com/makeit/entity/platform/sys/PlatLogoConfig.java
db/platAuth.sql
View file @
55bde74d
...
...
@@ -102,4 +102,21 @@ CREATE TABLE `plat_role_org` (
PRIMARY
KEY
(
`id`
),
KEY
`plat_role_iorg_id_index`
(
`org_id`
),
KEY
`plat_role_role_id_index`
(
`role_id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_general_ci
ROW_FORMAT
=
COMPACT
COMMENT
=
'租户端角色部门关联表'
;
\ No newline at end of file
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_general_ci
ROW_FORMAT
=
COMPACT
COMMENT
=
'租户端角色部门关联表'
;
CREATE
TABLE
`plat_logo_config`
(
`id`
VARCHAR
(
64
)
COLLATE
utf8mb4_general_ci
NOT
NULL
COMMENT
'id'
,
`tenant_id`
VARCHAR
(
64
)
COLLATE
utf8mb4_general_ci
NOT
NULL
COMMENT
'租户id'
,
`name`
varchar
(
100
)
COLLATE
utf8mb4_general_ci
NOT
NULL
COMMENT
'名称'
,
`logo_file_id`
VARCHAR
(
64
)
COLLATE
utf8mb4_general_ci
NOT
NULL
COMMENT
'logo文件ID'
,
`browser_file_id`
VARCHAR
(
64
)
COLLATE
utf8mb4_general_ci
NOT
NULL
COMMENT
'浏览器页签文件Id'
,
`background_file_id`
VARCHAR
(
64
)
COLLATE
utf8mb4_general_ci
NOT
NULL
COMMENT
'登录背景图片'
,
`create_date`
datetime
NOT
NULL
COMMENT
'创建时间'
,
`update_date`
datetime
NOT
NULL
COMMENT
'更新时间'
,
`del_flag`
CHAR
(
1
)
DEFAULT
NULL
COMMENT
'删除标识'
,
`create_by`
VARCHAR
(
64
)
NOT
NULL
COMMENT
'创建人'
,
`update_by`
VARCHAR
(
64
)
NOT
NULL
COMMENT
'更新人'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
INNODB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_general_ci
ROW_FORMAT
=
COMPACT
COMMENT
=
'系统配置表'
;
\ No newline at end of file
saas-module/src/main/java/com/makeit/controller/sys/SaasChinaAreaController.java
View file @
55bde74d
...
...
@@ -53,7 +53,7 @@ public class SaasChinaAreaController {
dto
.
setDepth
(
1
);
}
List
<
ChinaArea
>
list
=
chinaAreaService
.
tree
(
dto
);
List
<
ChinaArea
>
list
=
chinaAreaService
.
tree
Depth
(
dto
);
return
ApiResponseUtils
.
success
(
list
);
}
...
...
server-service/src/main/java/com/makeit/entity/platform/sys/PlatLogoConfig.java
0 → 100644
View file @
55bde74d
package
com
.
makeit
.
entity
.
platform
.
sys
;
import
com.makeit.common.entity.BaseBusEntity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
/**
* @Author:lzy
* @Date:2023/9/12 10:05
* @Describe:
*/
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
value
=
"PlatLogoConfig对象"
,
description
=
"LOGO配置"
)
public
class
PlatLogoConfig
extends
BaseBusEntity
{
@ApiModelProperty
(
"系统名称"
)
private
String
name
;
@ApiModelProperty
(
"LOGO文件ID"
)
private
String
logoFileId
;
@ApiModelProperty
(
"浏览器文件ID"
)
private
String
browserFileId
;
@ApiModelProperty
(
"背景图片ID"
)
private
String
backgroundFileId
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment