89 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package com.ubt.jimu.transport.request;
 | |
| 
 | |
| import com.ubt.jimu.transport.model.ConfigItem;
 | |
| 
 | |
| /* loaded from: classes2.dex */
 | |
| public class UploadSingleConfigItemParam extends BaseParam {
 | |
|     private String blocklyVersion;
 | |
|     private String content;
 | |
|     private String customModelId;
 | |
|     private String description;
 | |
|     private long fileCreateTime;
 | |
|     private long fileModifyTime;
 | |
|     private String fileName;
 | |
|     private String icon;
 | |
|     private String isDefault;
 | |
|     private String modelType;
 | |
|     private String opType;
 | |
|     private String type;
 | |
|     private String userId;
 | |
| 
 | |
|     public UploadSingleConfigItemParam(String str, String str2, ConfigItem configItem) {
 | |
|         this.userId = str;
 | |
|         this.opType = str2;
 | |
|         this.fileName = configItem.getFileName();
 | |
|         this.type = configItem.getType();
 | |
|         this.description = configItem.getDescription();
 | |
|         this.icon = configItem.getIcon();
 | |
|         this.fileCreateTime = configItem.getFileCreateTime();
 | |
|         this.fileModifyTime = configItem.getFileModifyTime();
 | |
|         this.customModelId = configItem.getCustomModelId();
 | |
|         this.isDefault = configItem.getIsDefault();
 | |
|         this.modelType = configItem.getModelType();
 | |
|         this.blocklyVersion = configItem.getBlocklyVersion();
 | |
|         this.content = configItem.getContent();
 | |
|     }
 | |
| 
 | |
|     public String getBlocklyVersion() {
 | |
|         return this.blocklyVersion;
 | |
|     }
 | |
| 
 | |
|     public String getContent() {
 | |
|         return this.content;
 | |
|     }
 | |
| 
 | |
|     public String getCustomModelId() {
 | |
|         return this.customModelId;
 | |
|     }
 | |
| 
 | |
|     public String getDescription() {
 | |
|         return this.description;
 | |
|     }
 | |
| 
 | |
|     public long getFileCreateTime() {
 | |
|         return this.fileCreateTime;
 | |
|     }
 | |
| 
 | |
|     public long getFileModifyTime() {
 | |
|         return this.fileModifyTime;
 | |
|     }
 | |
| 
 | |
|     public String getFileName() {
 | |
|         return this.fileName;
 | |
|     }
 | |
| 
 | |
|     public String getIcon() {
 | |
|         return this.icon;
 | |
|     }
 | |
| 
 | |
|     public String getIsDefault() {
 | |
|         return this.isDefault;
 | |
|     }
 | |
| 
 | |
|     public String getModelType() {
 | |
|         return this.modelType;
 | |
|     }
 | |
| 
 | |
|     public String getOpType() {
 | |
|         return this.opType;
 | |
|     }
 | |
| 
 | |
|     public String getType() {
 | |
|         return this.type;
 | |
|     }
 | |
| 
 | |
|     public String getUserId() {
 | |
|         return this.userId;
 | |
|     }
 | |
| }
 |