feat: 后端接口开发

This commit is contained in:
2025-08-30 20:38:14 +08:00
parent 6e31de7ac6
commit 119f66a833
59 changed files with 2449 additions and 0 deletions
@@ -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> {
}
@@ -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> {
}
@@ -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> {
}
@@ -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> {
}
@@ -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> {
}
@@ -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> {
}
@@ -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> {
}
@@ -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> {
}