...Note that enum values use C++ scoping rules, meaning that en...
“Note that enum values use C++ scoping rules, meaning that enum values are siblings of their type, not children of it. ”这个报错的意思是:在所有pb文件中必须是唯一的,而不仅仅是在这个enum中唯一。反过来理解就是enum中的属性名定义必须是唯一的。 解决方法: 1.如果提示已经存在了,就将enum里的属性...