获取所有标签

This commit is contained in:
2025-01-02 17:32:49 +08:00
parent 1157b41730
commit ee1e2f8556
7 changed files with 16 additions and 10 deletions

View File

@@ -10,4 +10,7 @@ import lombok.EqualsAndHashCode;
public class Tags extends BaseEntity{
private String tagName;
// 表示标签是否正在活动中 0->不在活动中 1->在活动中
private byte active = (byte)0;
}