公众号后台的api接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
420 B

1 year ago
  1. <#list sub.colums as po>
  2. <#if po.isShow == 'Y'>
  3. <#if po.fieldName != 'id'>
  4. <#if po.defaultVal??>
  5. <#if po.fieldDbType=="BigDecimal" || po.fieldDbType=="double" || po.fieldDbType=="int">
  6. ${po.fieldName}:${po.defaultVal},
  7. <#else>
  8. ${po.fieldName}:"${po.defaultVal}",
  9. </#if>
  10. </#if>
  11. </#if>
  12. </#if>
  13. </#list>