refactor: 删除 docs 模块的全部代码

- 移除了 DocsContentController、DocsController、DocsUserController 三个控制器
- 删除了 DocsContent、Docs、DocsUser三个实体类
- 移除了 DocsContentMapper、DocsMapper、DocsUserMapper 三个 Mapper 接口
- 删除了 DocsContentParam、DocsParam、DocsUserParam 三个查询参数类
- 移除了 DocsContentServiceImpl 服务实现类- 删除了相关的 XML 映射文件
This commit is contained in:
2025-08-13 05:03:13 +08:00
parent 416aca8691
commit 46dbf09d81
7 changed files with 33 additions and 41 deletions

View File

@@ -22,7 +22,7 @@ import java.util.List;
* 商品文章控制器
*
* @author 科技小王子
* @since 2025-08-13 04:38:36
* @since 2025-08-13 05:01:55
*/
@Tag(name = "商品文章管理")
@RestController

View File

@@ -14,7 +14,7 @@ import lombok.EqualsAndHashCode;
* 商品文章
*
* @author 科技小王子
* @since 2025-08-13 04:38:36
* @since 2025-08-13 05:01:54
*/
@Data
@EqualsAndHashCode(callSuper = false)

View File

@@ -12,7 +12,7 @@ import java.util.List;
* 商品文章Mapper
*
* @author 科技小王子
* @since 2025-08-13 04:38:36
* @since 2025-08-13 05:01:54
*/
public interface ShopArticleMapper extends BaseMapper<ShopArticle> {

View File

@@ -13,7 +13,7 @@ import lombok.EqualsAndHashCode;
* 商品文章查询参数
*
* @author 科技小王子
* @since 2025-08-13 04:38:35
* @since 2025-08-13 05:01:53
*/
@Data
@EqualsAndHashCode(callSuper = false)

View File

@@ -11,7 +11,7 @@ import java.util.List;
* 商品文章Service
*
* @author 科技小王子
* @since 2025-08-13 04:38:36
* @since 2025-08-13 05:01:55
*/
public interface ShopArticleService extends IService<ShopArticle> {

View File

@@ -15,7 +15,7 @@ import java.util.List;
* 商品文章Service实现
*
* @author 科技小王子
* @since 2025-08-13 04:38:36
* @since 2025-08-13 05:01:55
*/
@Service
public class ShopArticleServiceImpl extends ServiceImpl<ShopArticleMapper, ShopArticle> implements ShopArticleService {