修复收藏等问题
This commit is contained in:
@@ -1,16 +1,20 @@
|
||||
package com.ruoyi.common.core.domain.entity;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 music_collect
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-07-18
|
||||
*/
|
||||
@Data
|
||||
public class MusicCollect extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
@@ -22,6 +26,10 @@ public class MusicCollect extends BaseEntity
|
||||
@Excel(name = "音乐ID")
|
||||
private Long musicId;
|
||||
|
||||
/** 音乐ID */
|
||||
@Excel(name = "音乐ID")
|
||||
private List<Long> musicIds;
|
||||
|
||||
/** 收藏id */
|
||||
@Excel(name = "收藏id")
|
||||
private Long collectId;
|
||||
|
||||
Reference in New Issue
Block a user