add isModel to updatebooleanflagwithcodegenproperty (#1844)

This commit is contained in:
Hemant Zope 2019-01-09 04:22:51 +01:00 committed by William Cheng
parent 581bac83e9
commit 87d5484f2e

View File

@ -4035,6 +4035,9 @@ public class DefaultCodegen implements CodegenConfig {
if (Boolean.TRUE.equals(property.isFile)) {
parameter.isFile = true;
}
if (Boolean.TRUE.equals(property.isModel)) {
parameter.isModel = true;
}
}