diff --git a/src/main/com/zyplayer/doc/manage/repository/manage/dao/ZyplayerStorageMapper.java b/src/main/com/zyplayer/doc/manage/repository/manage/dao/ZyplayerStorageMapper.java deleted file mode 100644 index 6ba8098c..00000000 --- a/src/main/com/zyplayer/doc/manage/repository/manage/dao/ZyplayerStorageMapper.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.mapper; - -import com.zyplayer.doc.manage.repository.support.plus.manage.entity.ZyplayerStorage; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; - -/** - *

- * Mapper 接口 - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -public interface ZyplayerStorageMapper extends BaseMapper { - -} diff --git a/src/main/com/zyplayer/doc/manage/repository/manage/dao/ZyplayerStorageMapper.xml b/src/main/com/zyplayer/doc/manage/repository/manage/dao/ZyplayerStorageMapper.xml deleted file mode 100644 index 6ba8098c..00000000 --- a/src/main/com/zyplayer/doc/manage/repository/manage/dao/ZyplayerStorageMapper.xml +++ /dev/null @@ -1,16 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.mapper; - -import com.zyplayer.doc.manage.repository.support.plus.manage.entity.ZyplayerStorage; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; - -/** - *

- * Mapper 接口 - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -public interface ZyplayerStorageMapper extends BaseMapper { - -} diff --git a/src/main/com/zyplayer/doc/manage/repository/manage/entity/ZyplayerStorage.java b/src/main/com/zyplayer/doc/manage/repository/manage/entity/ZyplayerStorage.java deleted file mode 100644 index 07efc9c6..00000000 --- a/src/main/com/zyplayer/doc/manage/repository/manage/entity/ZyplayerStorage.java +++ /dev/null @@ -1,67 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import java.util.Date; -import com.baomidou.mybatisplus.annotation.TableId; -import java.io.Serializable; - -/** - *

- * - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -public class ZyplayerStorage implements Serializable { - - private static final long serialVersionUID = 1L; - - @TableId(value = "id", type = IdType.AUTO) - private Integer id; - - private String docKey; - - private String docValue; - - private Date creationTime; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - public String getDocKey() { - return docKey; - } - - public void setDocKey(String docKey) { - this.docKey = docKey; - } - public String getDocValue() { - return docValue; - } - - public void setDocValue(String docValue) { - this.docValue = docValue; - } - public Date getCreationTime() { - return creationTime; - } - - public void setCreationTime(Date creationTime) { - this.creationTime = creationTime; - } - - @Override - public String toString() { - return "ZyplayerStorage{" + - "id=" + id + - ", docKey=" + docKey + - ", docValue=" + docValue + - ", creationTime=" + creationTime + - "}"; - } -} diff --git a/src/main/com/zyplayer/doc/manage/repository/manage/entity/ZyplayerStorageMapper.xml b/src/main/com/zyplayer/doc/manage/repository/manage/entity/ZyplayerStorageMapper.xml deleted file mode 100644 index 07efc9c6..00000000 --- a/src/main/com/zyplayer/doc/manage/repository/manage/entity/ZyplayerStorageMapper.xml +++ /dev/null @@ -1,67 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.entity; - -import com.baomidou.mybatisplus.annotation.IdType; -import java.util.Date; -import com.baomidou.mybatisplus.annotation.TableId; -import java.io.Serializable; - -/** - *

- * - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -public class ZyplayerStorage implements Serializable { - - private static final long serialVersionUID = 1L; - - @TableId(value = "id", type = IdType.AUTO) - private Integer id; - - private String docKey; - - private String docValue; - - private Date creationTime; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - public String getDocKey() { - return docKey; - } - - public void setDocKey(String docKey) { - this.docKey = docKey; - } - public String getDocValue() { - return docValue; - } - - public void setDocValue(String docValue) { - this.docValue = docValue; - } - public Date getCreationTime() { - return creationTime; - } - - public void setCreationTime(Date creationTime) { - this.creationTime = creationTime; - } - - @Override - public String toString() { - return "ZyplayerStorage{" + - "id=" + id + - ", docKey=" + docKey + - ", docValue=" + docValue + - ", creationTime=" + creationTime + - "}"; - } -} diff --git a/src/main/com/zyplayer/doc/manage/service/manage/ZyplayerStorageMapper.java b/src/main/com/zyplayer/doc/manage/service/manage/ZyplayerStorageMapper.java deleted file mode 100644 index 4c5d0d80..00000000 --- a/src/main/com/zyplayer/doc/manage/service/manage/ZyplayerStorageMapper.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.service; - -import com.zyplayer.doc.manage.repository.support.plus.manage.entity.ZyplayerStorage; -import com.baomidou.mybatisplus.extension.service.IService; - -/** - *

- * 服务类 - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -public interface ZyplayerStorageService extends IService { - -} diff --git a/src/main/com/zyplayer/doc/manage/service/manage/ZyplayerStorageService.java b/src/main/com/zyplayer/doc/manage/service/manage/ZyplayerStorageService.java deleted file mode 100644 index 4c5d0d80..00000000 --- a/src/main/com/zyplayer/doc/manage/service/manage/ZyplayerStorageService.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.service; - -import com.zyplayer.doc.manage.repository.support.plus.manage.entity.ZyplayerStorage; -import com.baomidou.mybatisplus.extension.service.IService; - -/** - *

- * 服务类 - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -public interface ZyplayerStorageService extends IService { - -} diff --git a/src/main/com/zyplayer/doc/manage/service/manage/impl/ZyplayerStorageMapper.java b/src/main/com/zyplayer/doc/manage/service/manage/impl/ZyplayerStorageMapper.java deleted file mode 100644 index 606b8cf7..00000000 --- a/src/main/com/zyplayer/doc/manage/service/manage/impl/ZyplayerStorageMapper.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.service.impl; - -import com.zyplayer.doc.manage.repository.support.plus.manage.entity.ZyplayerStorage; -import com.zyplayer.doc.manage.repository.support.plus.manage.mapper.ZyplayerStorageMapper; -import com.zyplayer.doc.manage.repository.support.plus.manage.service.ZyplayerStorageService; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import org.springframework.stereotype.Service; - -/** - *

- * 服务实现类 - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -@Service -public class ZyplayerStorageServiceImpl extends ServiceImpl implements ZyplayerStorageService { - -} diff --git a/src/main/com/zyplayer/doc/manage/service/manage/impl/ZyplayerStorageServiceImpl.java b/src/main/com/zyplayer/doc/manage/service/manage/impl/ZyplayerStorageServiceImpl.java deleted file mode 100644 index 606b8cf7..00000000 --- a/src/main/com/zyplayer/doc/manage/service/manage/impl/ZyplayerStorageServiceImpl.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.zyplayer.doc.manage.repository.support.plus.manage.service.impl; - -import com.zyplayer.doc.manage.repository.support.plus.manage.entity.ZyplayerStorage; -import com.zyplayer.doc.manage.repository.support.plus.manage.mapper.ZyplayerStorageMapper; -import com.zyplayer.doc.manage.repository.support.plus.manage.service.ZyplayerStorageService; -import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import org.springframework.stereotype.Service; - -/** - *

- * 服务实现类 - *

- * - * @author 暮光:城中城 - * @since 2018-11-27 - */ -@Service -public class ZyplayerStorageServiceImpl extends ServiceImpl implements ZyplayerStorageService { - -}