feat: 后端接口开发
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteComment;
|
||||
|
||||
/**
|
||||
* 客户评价Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteCommentMapper extends IBaseMapper<WebsiteComment> {
|
||||
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteConsult;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteTarget;
|
||||
|
||||
/**
|
||||
* 网站咨询Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteConsultMapper extends IBaseMapper<WebsiteConsult> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteConsultType;
|
||||
|
||||
/**
|
||||
* 网站咨询类型Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteConsultTypeMapper extends IBaseMapper<WebsiteConsultType> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteProduct;
|
||||
|
||||
/**
|
||||
* 硬件产品Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteProductMapper extends IBaseMapper<WebsiteProduct> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteSoftwarePlan;
|
||||
|
||||
/**
|
||||
* 软件服务解决方案Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteSoftwarePlanMapper extends IBaseMapper<WebsiteSoftwarePlan> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteSuccessCase;
|
||||
|
||||
/**
|
||||
* 成功案例Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteSuccessCaseMapper extends IBaseMapper<WebsiteSuccessCase> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteSuccessCaseType;
|
||||
|
||||
/**
|
||||
* 成功案例类型Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteSuccessCaseTypeMapper extends IBaseMapper<WebsiteSuccessCaseType> {
|
||||
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
|
||||
package com.byhah.cloud.orm.mapper.website;
|
||||
|
||||
import com.byhah.cloud.autoconfigure.IBaseMapper;
|
||||
import com.byhah.cloud.basic.core.entity.website.WebsiteTarget;
|
||||
|
||||
/**
|
||||
* 关于我们的目标信息Mapper接口
|
||||
*
|
||||
* @author ZYJ
|
||||
**/
|
||||
public interface IWebsiteTargetMapper extends IBaseMapper<WebsiteTarget> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user