From ecca9ab70a9a87bcb60977c92fbf81053b8fc1bb Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期三, 04 九月 2024 09:17:55 +0800
Subject: [PATCH] 新增优化

---
 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