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
private String managed;
private String onlineStatus;
private String name;
public static final class Fields {
public static final String managed= "managed";
public static final String onlineStatus = "onlineStatus";
public static final String online_status = "online_status";
public static final String name = "name";
private Fields() {
}
}
}
I hope lombok will support generate underline constants in the future, because most fields in the database are named with underline,thanks for you, you know.
The text was updated successfully, but these errors were encountered:
Such as source:
@FieldNameConstants(supportCamelCase=true , supportUnderline=true)
public class MetricsCommonFieldsDTO {
}
lombok Generate:
public class MetricsCommonFieldsDTO {
}
I hope lombok will support generate underline constants in the future, because most fields in the database are named with underline,thanks for you, you know.
The text was updated successfully, but these errors were encountered: