18 lines
532 B
Java
18 lines
532 B
Java
package com.ubt.jimu.transport.request;
|
|
|
|
import com.ubt.jimu.transport.model.ConfigItem;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class UploadConfigItemParam extends BaseParam {
|
|
private List<UploadConfigItem> batchConfigFileList;
|
|
private String opType;
|
|
private String userId;
|
|
|
|
public UploadConfigItemParam(String str, String str2, List<ConfigItem> list) {
|
|
this.userId = str;
|
|
this.opType = str2;
|
|
this.batchConfigFileList = UploadConfigItem.fromConfigItems(list);
|
|
}
|
|
}
|