refactor(context): remove legacy module context

This commit is contained in:
2026-03-30 18:01:55 +08:00
parent 0b750f8028
commit def48fd0ce

View File

@@ -1,18 +0,0 @@
package work.slhaf.partner.runtime.interaction.data.context.subcontext;
import com.alibaba.fastjson2.JSONObject;
import lombok.Data;
import lombok.EqualsAndHashCode;
import work.slhaf.partner.api.common.entity.PersistableObject;
import java.io.Serial;
@EqualsAndHashCode(callSuper = true)
@Data
public class ModuleContext extends PersistableObject {
@Serial
private static final long serialVersionUID = 1L;
private JSONObject extraContext = new JSONObject();
}