forked from gzzfw/backEnd/gz-dyh

xusd
2024-10-14 3721eea476d9dad0a5838b3aa89a30a8b4640f7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
form: [
<#list cols as col>
    <#if (col.name!="id" && col.name!="create_time" && col.name!="update_time")>
    {
        <#if col.javaDataType=="Date">
        type: 'date',
        <#else>
        type: 'text',
        </#if>
        name: '${col.fieldName}',
        label: '${col.comments}',
        require: true,
        value: ''
    },
    </#if>
</#list>
]