5 changed files with 76 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
package com.bnyer.img.enums; |
|||
|
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Getter; |
|||
|
|||
/** |
|||
* @author chengkun |
|||
* @date 2022/4/19 17:43 |
|||
*/ |
|||
@Getter |
|||
@AllArgsConstructor |
|||
public enum TiktokCollectionEnum { |
|||
|
|||
COLLECTE(1,"收藏"), |
|||
UN_COLLECTE(0,"取消收藏"); |
|||
|
|||
private Integer code; |
|||
|
|||
private String msg; |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
package com.bnyer.img.enums; |
|||
|
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Getter; |
|||
|
|||
/** |
|||
* @author chengkun |
|||
* @date 2022/4/19 17:46 |
|||
*/ |
|||
@Getter |
|||
@AllArgsConstructor |
|||
public enum TiktokLikeEnum { |
|||
LIKE(1,"喜欢"), |
|||
UN_LIKE(0,"不喜欢"); |
|||
|
|||
private Integer code; |
|||
|
|||
private String msg; |
|||
} |
|||
Loading…
Reference in new issue