add collection mongo event

This commit is contained in:
Valentin CZERYBA 2023-01-10 22:14:29 +01:00
parent 2cb02ca223
commit 3c053b94ee

View File

@ -0,0 +1,13 @@
package com.covas.Entity;
import io.quarkus.mongodb.panache.PanacheMongoEntity;
import io.quarkus.mongodb.panache.common.MongoEntity;
@MongoEntity(collection="event")
public class EventEntity extends PanacheMongoEntity {
public String name;
public Short status;
}