47 lines
1.5 KiB
Java
47 lines
1.5 KiB
Java
package customization.test;
|
|
public class UfTempAttachmentDTO{
|
|
private int id;
|
|
private int requestId;
|
|
private int workflowType;
|
|
private String attachmentField;
|
|
private String showField;
|
|
private String modelTableName;
|
|
private String modelField;
|
|
private String showValue;
|
|
private String hiddenValue;
|
|
private int formmodeid;
|
|
private int modedatacreater;
|
|
private int modedatacreatertype;
|
|
private String modedatacreatedate;
|
|
private String modedatacreatetime;
|
|
private int modedatamodifier;
|
|
private String modedatamodifydatetime;
|
|
private String MODEUUID;
|
|
private String templateField;
|
|
private int isTemplateShow;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "UfTempAttachmentDTO{" +
|
|
"id=" + id +
|
|
", requestId=" + requestId +
|
|
", workflowType=" + workflowType +
|
|
", attachmentField='" + attachmentField + '\'' +
|
|
", showField='" + showField + '\'' +
|
|
", modelTableName='" + modelTableName + '\'' +
|
|
", modelField='" + modelField + '\'' +
|
|
", showValue='" + showValue + '\'' +
|
|
", hiddenValue='" + hiddenValue + '\'' +
|
|
", formmodeid=" + formmodeid +
|
|
", modedatacreater=" + modedatacreater +
|
|
", modedatacreatertype=" + modedatacreatertype +
|
|
", modedatacreatedate='" + modedatacreatedate + '\'' +
|
|
", modedatacreatetime='" + modedatacreatetime + '\'' +
|
|
", modedatamodifier=" + modedatamodifier +
|
|
", modedatamodifydatetime='" + modedatamodifydatetime + '\'' +
|
|
", MODEUUID='" + MODEUUID + '\'' +
|
|
", templateField='" + templateField + '\'' +
|
|
", isTemplateShow=" + isTemplateShow +
|
|
'}';
|
|
}
|
|
} |