You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.(关于这个PR的描述,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
Can you tell me if it supports designated JSON serialization methods? For example, in our project, I use Jackson to implement serialization. To prevent affecting the API return format, I use Gson to deserialize third-party non-camel case parameters. In the current generated documentation, it automatically recognizes the gson serialized annotation @SerializedName, but the return parameter format is not what I expected.
Basic example (PR的用例,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
public class DisasterWarnDto implements Serializable {
Is your feature request related to a problem? Please describe.(关于这个PR的描述,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
Can you tell me if it supports designated JSON serialization methods? For example, in our project, I use Jackson to implement serialization. To prevent affecting the API return format, I use Gson to deserialize third-party non-camel case parameters. In the current generated documentation, it automatically recognizes the gson serialized annotation @SerializedName, but the return parameter format is not what I expected.
Basic example (PR的用例,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
public class DisasterWarnDto implements Serializable {
}
Describe the solution you'd like (描述您想要的解决方案,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
The desired result is
{“tongTime”:"xxxx","unitLat":"xxxx"}
but not
{“tong_time”:"xxxx","unit_lat":"xxxx"}
Describe alternatives you've considered (描述你考虑过的替代方案,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
I hope to have a plan that clearly specifies which JSON serialization schemes are supported.
Additional context (其他背景信息,社区已开启国际化推广,请文心一言、讯飞星火等辅助翻译成英文,减少社区开发者的工作)
No response
Validations