FeedBackParam.java 332 Bytes
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.yidianling.user.mine;


import com.ydl.ydlcommon.data.http.BaseCommand;

public class FeedBackParam extends BaseCommand {
    //投诉反馈

    public String content;
    public String phone;

    public FeedBackParam(String content, String phone) {
        this.content = content;
        this.phone = phone;
    }

}