Commit 9f67ce3f authored by 廖旭伟's avatar 廖旭伟

基础配置增加轮播图

parent 340675e5
...@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment