In the project, I dynamically generate a POJO class. After generating this POJO class, I need to use this class in other places, but there will be an error "symbol not found". For example, when I generate this class with the name of "User" and use "User" in the code generated in another section, there will be an error of symbol not found.
public void run(SourceContext<User> sourceContext) throws Exception
In this automatically generated code, the prompt cannot find the symbol "User",How can I solve this problem?