Wrong CaseConversion generated code

Hi

I think there is a small issue when Studio generates code for a String property that should be case converted to LOWER.

The generated code uses CaseConversion.LOWER where it should be ConversionType.LOWER.

No issue when trying UPPER, because it is the default value and thus not generated.

public class ExtFileDescriptor extends FileDescriptor {
    private static final long serialVersionUID = -5820313476152114545L;

    @CaseConversion(type = CaseConversion.LOWER) '<= should be ConversionType.LOWER
    @Column(name = "TAGS", length = 150)
    protected String tags;

    @CaseConversion
    @Column(name = "TEST")
    protected String test;

Hi.
Thank you for reporting the problem. We have created a YouTrack issue, see the link on the right.

:ticket: See the following issue in our bug tracker:

https://youtrack.cuba-platform.com/issue/STUDIO-3933