zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package cn.autoform.util.form.mapper;
 
import cn.autoform.db.entity.FormFieldAttrEntity;
import cn.autoform.db.entity.FormFieldEntity;
import cn.autoform.db.entity.form.FormCpnAttr;
import cn.autoform.db.entity.form.FormCpnAttr.Custom;
import cn.autoform.db.entity.form.FormCpnInfo;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Generated;
 
@Generated(
    value = "org.mapstruct.ap.MappingProcessor",
    date = "2020-05-18T19:31:08+0800",
    comments = "version: 1.2.0.Final, compiler: javac, environment: Java 1.8.0_65 (Oracle Corporation)"
)
public class FormCpnInfoMapperImpl implements FormCpnInfoMapper {
 
    @Override
    public FormFieldEntity of(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
 
        FormFieldEntity formFieldEntity = new FormFieldEntity();
 
        String masterData = formCpnInfoTagAttributeMasterData( formCpnInfo );
        if ( masterData != null ) {
            formFieldEntity.setMasterData( masterData );
        }
        formFieldEntity.setParentsubFormNum( formCpnInfo.getParentsubFormNum() );
        Boolean visible = formCpnInfoTagAttributeVisible( formCpnInfo );
        if ( visible != null ) {
            formFieldEntity.setVisible( visible );
        }
        String alias = formCpnInfoTagAttributeAlias( formCpnInfo );
        if ( alias != null ) {
            formFieldEntity.setFieldKey( alias );
        }
        Boolean editable = formCpnInfoTagAttributeEditable( formCpnInfo );
        if ( editable != null ) {
            formFieldEntity.setEditable( editable );
        }
        formFieldEntity.setColumnOrderNum( formCpnInfo.getColumnOrderNum() );
        List<FormFieldAttrEntity> customArr = formCpnInfoTagAttributeCustomArr( formCpnInfo );
        List<FormFieldAttrEntity> list = customArr;
        if ( list != null ) {
            formFieldEntity.setFieldAttr( new ArrayList<FormFieldAttrEntity>( list ) );
        }
        else {
            formFieldEntity.setFieldAttr( null );
        }
        if ( formCpnInfo.getTagType() != null ) {
            formFieldEntity.setFieldtype( formCpnInfo.getTagType().name() );
        }
        String title = formCpnInfoTagAttributeTitle( formCpnInfo );
        if ( title != null ) {
            formFieldEntity.setTitle( title );
        }
        List<Custom> custom = formCpnInfoTagAttributeCustom( formCpnInfo );
        List<Custom> list1 = custom;
        if ( list1 != null ) {
            formFieldEntity.setDataSourceData( new ArrayList<Object>( list1 ) );
        }
        else {
            formFieldEntity.setDataSourceData( null );
        }
        formFieldEntity.setFieldOrderNum( formCpnInfo.getFieldOrderNum() );
        String chooseForm = formCpnInfoTagAttributeChooseForm( formCpnInfo );
        if ( chooseForm != null ) {
            formFieldEntity.setValue( chooseForm );
        }
        String datasourcetype = formCpnInfoTagAttributeDatasourcetype( formCpnInfo );
        if ( datasourcetype != null ) {
            formFieldEntity.setDataSourceType( datasourcetype );
        }
        formFieldEntity.setFieldId( formCpnInfo.getTagId() );
 
        formFieldEntity.setFieldset( cn.autoform.util.tool.JSONTool.toJson(formCpnInfo) );
        formFieldEntity.setTenantID( cn.autoform.util.thread.ThreadData.get(cn.autoform.util.thread.Keys.TENANT_ID) );
 
        return formFieldEntity;
    }
 
    private String formCpnInfoTagAttributeMasterData(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        String masterData = tagAttribute.getMasterData();
        if ( masterData == null ) {
            return null;
        }
        return masterData;
    }
 
    private Boolean formCpnInfoTagAttributeVisible(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        Boolean visible = tagAttribute.getVisible();
        if ( visible == null ) {
            return null;
        }
        return visible;
    }
 
    private String formCpnInfoTagAttributeAlias(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        String alias = tagAttribute.getAlias();
        if ( alias == null ) {
            return null;
        }
        return alias;
    }
 
    private Boolean formCpnInfoTagAttributeEditable(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        Boolean editable = tagAttribute.getEditable();
        if ( editable == null ) {
            return null;
        }
        return editable;
    }
 
    private List<FormFieldAttrEntity> formCpnInfoTagAttributeCustomArr(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        List<FormFieldAttrEntity> customArr = tagAttribute.getCustomArr();
        if ( customArr == null ) {
            return null;
        }
        return customArr;
    }
 
    private String formCpnInfoTagAttributeTitle(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        String title = tagAttribute.getTitle();
        if ( title == null ) {
            return null;
        }
        return title;
    }
 
    private List<Custom> formCpnInfoTagAttributeCustom(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        List<Custom> custom = tagAttribute.getCustom();
        if ( custom == null ) {
            return null;
        }
        return custom;
    }
 
    private String formCpnInfoTagAttributeChooseForm(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        String chooseForm = tagAttribute.getChooseForm();
        if ( chooseForm == null ) {
            return null;
        }
        return chooseForm;
    }
 
    private String formCpnInfoTagAttributeDatasourcetype(FormCpnInfo formCpnInfo) {
        if ( formCpnInfo == null ) {
            return null;
        }
        FormCpnAttr tagAttribute = formCpnInfo.getTagAttribute();
        if ( tagAttribute == null ) {
            return null;
        }
        String datasourcetype = tagAttribute.getDatasourcetype();
        if ( datasourcetype == null ) {
            return null;
        }
        return datasourcetype;
    }
}