|
|
@@ -1,6 +1,7 @@
|
|
|
package com.cyksj.model.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.ejlchina.searcher.bean.SearchBean;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
@@ -15,6 +16,7 @@ import javax.validation.constraints.NotEmpty;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
@TableName("spotify_unLimit_record")
|
|
|
+@SearchBean(tables = "spotify_unLimit_record")
|
|
|
public class SpotifyUnLimitRecord extends BaseEntity {
|
|
|
private Long userId;
|
|
|
|
|
|
@@ -31,7 +33,7 @@ public class SpotifyUnLimitRecord extends BaseEntity {
|
|
|
public enum Status {
|
|
|
Processing("待解除"),
|
|
|
Success("解除成功"),
|
|
|
- Fail("解除失败"),
|
|
|
+ Fail("解除失败"),
|
|
|
;
|
|
|
|
|
|
String desc;
|