I see that greenDao prefers not to use annotations to generate DAO and TO due to performance issues. However, what if I still need to comment, for example, TO for parser purposes? Is there any way to achieve this?
Example:
If we create a Customer object with code generation GreenDAO, it will create the classes CustomerDAO and Customer, right?
So, what if I use SOAP web services that return a Customer object, and to facilitate parsing this Customer object, I use an annotated structure such as simpleXML. Is there a way to change the Customer class without losing every annotation when regenerating code using GreenDAO?
Thanks!
source share