From a782d74cf0a6e2181f68bb1f4472ade94626f688 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期二, 01 七月 2025 18:09:53 +0800 Subject: [PATCH] bug修改 --- ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/entity/RecoveryClassify.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/entity/RecoveryClassify.java b/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/entity/RecoveryClassify.java index 09f0188..977f08e 100644 --- a/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/entity/RecoveryClassify.java +++ b/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/entity/RecoveryClassify.java @@ -24,7 +24,7 @@ @ApiModel(value = "RecoveryClassify对象", description = "回收分类表") public class RecoveryClassify extends BaseEntity { - @TableId(value = "id",type = IdType.AUTO) + @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty("上级分类名称") @@ -44,12 +44,12 @@ private String classificationPicture; @ApiModelProperty("分类描述") - @TableField("describe") - private String describe; + @TableField("type_describe") + private String typeDescribe; @ApiModelProperty("排序权重") - @TableField("order") - private Integer order; + @TableField("sort") + private Integer sort; @ApiModelProperty("分类简介") @TableField("brief_introduction") -- Gitblit v1.7.1