admin
2025-06-06 9cd825aea53fa5ba0cda1485464af027e27f0ce4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package tech.aiflowy.ai.entity.base;
 
import com.mybatisflex.annotation.Id;
import java.io.Serializable;
 
 
public class AiPluginCategoryRelationBase implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Id
    private Long pluginId;
 
    @Id
    private Integer categoryId;
 
    public Long getPluginId() {
        return pluginId;
    }
 
    public void setPluginId(Long pluginId) {
        this.pluginId = pluginId;
    }
 
    public Integer getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
}