All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.user.AuthOperateReq Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.user;

import eleme.openapi.sdk.api.enumeration.user.*;
import eleme.openapi.sdk.api.entity.user.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class AuthOperateReq{

    /**
     * 需要解除授权的列表
     */
    private List itemList;
    public List getItemList() {
        return itemList;
    }
    public void setItemList(List itemList) {
        this.itemList = itemList;
    }
    
    /**
     * 操作类型(1删除,2恢复),注意当前接口类型
     */
    private Integer optType;
    public Integer getOptType() {
        return optType;
    }
    public void setOptType(Integer optType) {
        this.optType = optType;
    }
    
    /**
     * 操作原因
     */
    private String reason;
    public String getReason() {
        return reason;
    }
    public void setReason(String reason) {
        this.reason = reason;
    }
    
    /**
     * 操作来源,服务商操作可以用默认值0
     */
    private Integer optSource;
    public Integer getOptSource() {
        return optSource;
    }
    public void setOptSource(Integer optSource) {
        this.optSource = optSource;
    }
    
    /**
     * 操作渠道,服务商操作可以用默认值0
     */
    private Integer optChannel;
    public Integer getOptChannel() {
        return optChannel;
    }
    public void setOptChannel(Integer optChannel) {
        this.optChannel = optChannel;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy