潘志宝
2024-08-20 92d87eda945d68346475e6766673a3cdccf3d41c
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.model;
H 2
3 import java.io.Serializable;
4 import java.util.List;
5 import java.util.Map;
6
7 public class IAILModel implements Serializable {
8     private static final long serialVersionUID = -4537530431274769332L;
9     private String className;
10     private String methodName;
11     private Class<?>[] paramsArray;
12     private String resultKey;
13     private String filePath;
14     private Map dataMap;
15     private Map settingConfigMap;
16     private Map loadSettingMap;
17     private List<String> paramNameList;
18     private List<String> paramPathList;
19     private List<String> fileBase64List;
20     private String version;
21     private String info1;
22     private String info2;
23     private String info3;
24
25     public IAILModel() {
26     }
27
28     public String getFilePath() {
29         return this.filePath;
30     }
31
32     public void setFilePath(String filePath) {
33         this.filePath = filePath;
34     }
35
36     public Map getDataMap() {
37         return this.dataMap;
38     }
39
40     public void setDataMap(Map dataMap) {
41         this.dataMap = dataMap;
42     }
43
44     public Map getSettingConfigMap() {
45         return this.settingConfigMap;
46     }
47
48     public void setSettingConfigMap(Map settingConfigMap) {
49         this.settingConfigMap = settingConfigMap;
50     }
51
52     public Map getLoadSettingMap() {
53         return this.loadSettingMap;
54     }
55
56     public void setLoadSettingMap(Map loadSettingMap) {
57         this.loadSettingMap = loadSettingMap;
58     }
59
60     public List<String> getParamNameList() {
61         return this.paramNameList;
62     }
63
64     public void setParamNameList(List<String> paramNameList) {
65         this.paramNameList = paramNameList;
66     }
67
68     public List<String> getParamPathList() {
69         return this.paramPathList;
70     }
71
72     public void setParamPathList(List<String> paramPathList) {
73         this.paramPathList = paramPathList;
74     }
75
76     public List<String> getFileBase64List() {
77         return this.fileBase64List;
78     }
79
80     public void setFileBase64List(List<String> fileBase64List) {
81         this.fileBase64List = fileBase64List;
82     }
83
84     public String getClassName() {
85         return this.className;
86     }
87
88     public void setClassName(String className) {
89         this.className = className;
90     }
91
92     public String getMethodName() {
93         return this.methodName;
94     }
95
96     public void setMethodName(String methodName) {
97         this.methodName = methodName;
98     }
99
100     public Class<?>[] getParamsArray() {
101         return this.paramsArray;
102     }
103
104     public void setParamsArray(Class<?>[] paramsArray) {
105         this.paramsArray = paramsArray;
106     }
107
108     public String getResultKey() {
109         return this.resultKey;
110     }
111
112     public void setResultKey(String resultKey) {
113         this.resultKey = resultKey;
114     }
115
116     public String getVersion() {
117         return this.version;
118     }
119
120     public void setVersion(String version) {
121         this.version = version;
122     }
123
124     public String getInfo1() {
125         return this.info1;
126     }
127
128     public void setInfo1(String info1) {
129         this.info1 = info1;
130     }
131
132     public String getInfo2() {
133         return this.info2;
134     }
135
136     public void setInfo2(String info2) {
137         this.info2 = info2;
138     }
139
140     public String getInfo3() {
141         return this.info3;
142     }
143
144     public void setInfo3(String info3) {
145         this.info3 = info3;
146     }
147 }