去掉不需要的类
This commit is contained in:
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* Mapper 接口
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 暮光:城中城
|
|
||||||
* @since 2018-11-27
|
|
||||||
*/
|
|
||||||
public interface ZyplayerStorageMapper extends BaseMapper<ZyplayerStorage> {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* Mapper 接口
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 暮光:城中城
|
|
||||||
* @since 2018-11-27
|
|
||||||
*/
|
|
||||||
public interface ZyplayerStorageMapper extends BaseMapper<ZyplayerStorage> {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @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 +
|
|
||||||
"}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
*
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @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 +
|
|
||||||
"}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* 服务类
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 暮光:城中城
|
|
||||||
* @since 2018-11-27
|
|
||||||
*/
|
|
||||||
public interface ZyplayerStorageService extends IService<ZyplayerStorage> {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* 服务类
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 暮光:城中城
|
|
||||||
* @since 2018-11-27
|
|
||||||
*/
|
|
||||||
public interface ZyplayerStorageService extends IService<ZyplayerStorage> {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* 服务实现类
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 暮光:城中城
|
|
||||||
* @since 2018-11-27
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class ZyplayerStorageServiceImpl extends ServiceImpl<ZyplayerStorageMapper, ZyplayerStorage> implements ZyplayerStorageService {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -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;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <p>
|
|
||||||
* 服务实现类
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @author 暮光:城中城
|
|
||||||
* @since 2018-11-27
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
public class ZyplayerStorageServiceImpl extends ServiceImpl<ZyplayerStorageMapper, ZyplayerStorage> implements ZyplayerStorageService {
|
|
||||||
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user