Blame view

juvenile-prosecution-boot/jeecg-boot-module-system/target/classes/jeecg/code-template-online/common/init/initValue.ftl 417 Bytes
6c637641   wxy   no message
1
2
3
4
5
6
7
8
9
10
11
12
13
  <#list columns as po>
      <#if po.isShow == 'Y'>
          <#if po.fieldName != 'id'>
              <#if po.defaultVal??>
                  <#if po.fieldDbType=="BigDecimal" || po.fieldDbType=="double" || po.fieldDbType=="int">
              ${po.fieldName}:${po.defaultVal},
                  <#else>
              ${po.fieldName}:"${po.defaultVal}",
                  </#if>
              </#if>
          </#if>
      </#if>
  </#list>