package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseRequest;

import java.math.BigDecimal;

public class E612Request extends BaseRequest {

    public E612Request() {
        setActionCode("E612");
    }

    private String userId;

    private String lawyerId;

    /**
     * 订单Id
     */
    private String orderId;

    /**
     * 问题描述
     */
    private String questions;

    /**
     * 问题类型-对应擅长领域code
     */
    private String fieldCode;

    private String logId;

    private String sourceId;

    private int pushCertLevel;

    private BigDecimal amount;

    public BigDecimal getAmount() {
        return amount;
    }

    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }

    public String getFieldCode() {
        return fieldCode;
    }

    public void setFieldCode(String fieldCode) {
        this.fieldCode = fieldCode;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getLawyerId() {
        return lawyerId;
    }

    public void setLawyerId(String lawyerId) {
        this.lawyerId = lawyerId;
    }

    public String getOrderId() {
        return orderId;
    }

    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }

    public String getQuestions() {
        return questions;
    }

    public void setQuestions(String questions) {
        this.questions = questions;
    }

    public String getLogId() {
        return logId;
    }

    public void setLogId(String logId) {
        this.logId = logId;
    }

    public String getSourceId() {
        return sourceId;
    }

    public void setSourceId(String sourceId) {
        this.sourceId = sourceId;
    }

    public int getPushCertLevel() {
        return pushCertLevel;
    }

    public void setPushCertLevel(int pushCertLevel) {
        this.pushCertLevel = pushCertLevel;
    }
}