TASK:collection sort;

This commit is contained in:
shahaibo
2025-06-03 11:23:13 +08:00
parent 3bfbd8abc1
commit 112294bd7b
12 changed files with 110 additions and 66 deletions

View File

@@ -0,0 +1,7 @@
package com.ai.da.mapper.primary;
import com.ai.da.common.config.mybatis.plus.CommonMapper;
import com.ai.da.mapper.primary.entity.CollectionSort;
public interface CollectionSortMapper extends CommonMapper<CollectionSort> {
}

View File

@@ -1,7 +0,0 @@
package com.ai.da.mapper.primary;
import com.ai.da.common.config.mybatis.plus.CommonMapper;
import com.ai.da.mapper.primary.entity.UserLikeSort;
public interface UserLikeSortMapper extends CommonMapper<UserLikeSort> {
}

View File

@@ -13,7 +13,7 @@ import java.util.Date;
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("collection_sort")
public class UserLikeSort implements Serializable {
public class CollectionSort implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)