Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
self-service
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
self-service
Commits
9f67ce3f
Commit
9f67ce3f
authored
Feb 27, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
基础配置增加轮播图
parent
340675e5
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1692 additions
and
1140 deletions
+1692
-1140
sst-manager/src/main/java/com/mortals/xhx/module/sst/model/SstBasicEntity.java
...java/com/mortals/xhx/module/sst/model/SstBasicEntity.java
+136
-115
sst-manager/src/main/java/com/mortals/xhx/module/sst/model/SstBasicQuery.java
.../java/com/mortals/xhx/module/sst/model/SstBasicQuery.java
+890
-489
sst-manager/src/main/resources/sqlmap/module/sst/SstBasicMapper.xml
...r/src/main/resources/sqlmap/module/sst/SstBasicMapper.xml
+666
-536
No files found.
sst-manager/src/main/java/com/mortals/xhx/module/sst/model/SstBasicEntity.java
View file @
9f67ce3f
...
@@ -7,11 +7,11 @@ import com.mortals.framework.annotation.Excel;
...
@@ -7,11 +7,11 @@ import com.mortals.framework.annotation.Excel;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.sst.model.vo.SstBasicVo
;
import
com.mortals.xhx.module.sst.model.vo.SstBasicVo
;
/**
/**
* 基础配置实体对象
* 基础配置实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2022-12-26
* @date 2023-02-27
*/
*/
public
class
SstBasicEntity
extends
SstBasicVo
{
public
class
SstBasicEntity
extends
SstBasicVo
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -64,6 +64,10 @@ public class SstBasicEntity extends SstBasicVo {
...
@@ -64,6 +64,10 @@ public class SstBasicEntity extends SstBasicVo {
* 启用长辈模式0不启用1启用
* 启用长辈模式0不启用1启用
*/
*/
private
Integer
elderEnable
;
private
Integer
elderEnable
;
/**
* 轮播图图片地址
*/
private
String
carouselPic
;
...
@@ -236,6 +240,20 @@ public class SstBasicEntity extends SstBasicVo {
...
@@ -236,6 +240,20 @@ public class SstBasicEntity extends SstBasicVo {
public
void
setElderEnable
(
Integer
elderEnable
){
public
void
setElderEnable
(
Integer
elderEnable
){
this
.
elderEnable
=
elderEnable
;
this
.
elderEnable
=
elderEnable
;
}
}
/**
* 获取 轮播图图片地址
* @return String
*/
public
String
getCarouselPic
(){
return
carouselPic
;
}
/**
* 设置 轮播图图片地址
* @param carouselPic
*/
public
void
setCarouselPic
(
String
carouselPic
){
this
.
carouselPic
=
carouselPic
;
}
...
@@ -270,6 +288,7 @@ public class SstBasicEntity extends SstBasicVo {
...
@@ -270,6 +288,7 @@ public class SstBasicEntity extends SstBasicVo {
sb
.
append
(
",organizer:"
).
append
(
getOrganizer
());
sb
.
append
(
",organizer:"
).
append
(
getOrganizer
());
sb
.
append
(
",record:"
).
append
(
getRecord
());
sb
.
append
(
",record:"
).
append
(
getRecord
());
sb
.
append
(
",elderEnable:"
).
append
(
getElderEnable
());
sb
.
append
(
",elderEnable:"
).
append
(
getElderEnable
());
sb
.
append
(
",carouselPic:"
).
append
(
getCarouselPic
());
return
sb
.
toString
();
return
sb
.
toString
();
}
}
...
@@ -298,5 +317,7 @@ public class SstBasicEntity extends SstBasicVo {
...
@@ -298,5 +317,7 @@ public class SstBasicEntity extends SstBasicVo {
this
.
record
=
""
;
this
.
record
=
""
;
this
.
elderEnable
=
1
;
this
.
elderEnable
=
1
;
this
.
carouselPic
=
""
;
}
}
}
}
\ No newline at end of file
sst-manager/src/main/java/com/mortals/xhx/module/sst/model/SstBasicQuery.java
View file @
9f67ce3f
This diff is collapsed.
Click to expand it.
sst-manager/src/main/resources/sqlmap/module/sst/SstBasicMapper.xml
View file @
9f67ce3f
This diff is collapsed.
Click to expand it.
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