mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-11 02:17:56 +08:00
增加装修接口
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.mdd.common.entity.decorate;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 页面装修实体
|
||||
*/
|
||||
@Data
|
||||
public class DecoratePage implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Integer id;
|
||||
private Integer pageType;
|
||||
private String pageName;
|
||||
private String pageData;
|
||||
private Long createTime;
|
||||
private Long updateTime;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.mdd.common.entity.decorate;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 底部导航实体
|
||||
*/
|
||||
@Data
|
||||
public class DecorateTabbar implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value="id", type= IdType.AUTO)
|
||||
private Integer id;
|
||||
private String name;
|
||||
private String selected;
|
||||
private String unselected;
|
||||
private String link;
|
||||
private Long createTime;
|
||||
private Long updateTime;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.mdd.common.mapper.decorate;
|
||||
|
||||
import com.mdd.common.core.basics.IBaseMapper;
|
||||
import com.mdd.common.entity.decorate.DecoratePage;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 页面装修Mapper
|
||||
*/
|
||||
@Mapper
|
||||
public interface DecoratePageMapper extends IBaseMapper<DecoratePage> {
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.mdd.common.mapper.decorate;
|
||||
|
||||
import com.mdd.common.core.basics.IBaseMapper;
|
||||
import com.mdd.common.entity.decorate.DecorateTabbar;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 底部导航Mapper
|
||||
*/
|
||||
@Mapper
|
||||
public interface DecorateTabbarMapper extends IBaseMapper<DecorateTabbar> {
|
||||
}
|
||||
Reference in New Issue
Block a user