E728Request.java 483 Bytes
Newer Older
xucl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseRequest;

public class E728Request extends BaseRequest {
    private String lawyerId;

    private int operation;

    public String getLawyerId() {
        return lawyerId;
    }

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

    public int getOperation() {
        return operation;
    }

    public void setOperation(int operation) {
        this.operation = operation;
    }
}