E719Request.java 959 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseRequest;

public class E719Request extends BaseRequest {
    public E719Request() {
        setActionCode("E719");
    }
    private int appType =0;//默认0 app,1 小程序

    private String bannerBelong;//图片类型

    private String lawyerId;

    private String system;

    public String getLawyerId() {
        return lawyerId;
    }

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

    public String getBannerBelong() {
        return bannerBelong;
    }

    public void setBannerBelong(String bannerBelong) {
        this.bannerBelong = bannerBelong;
    }

    public int getAppType() {
        return appType;
    }

    public void setAppType(int appType) {
        this.appType = appType;
    }

    public String getSystem() {
        return system;
    }

    public void setSystem(String system) {
        this.system = system;
    }
}