Report.java 587 Bytes
Newer Older
konghaorui 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 26 27 28 29 30 31
package com.yidianling.im.bean;

/**
 * Created by xiongyu on 2017/3/30.
 */

public class Report {
    private String Report_id;
    private String content;

    public Report(String report_id, String content) {
        Report_id = report_id;
        this.content = content;
    }

    public String getReport_id() {
        return Report_id;
    }

    public void setReport_id(String report_id) {
        Report_id = report_id;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}