E726Response.java 541 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
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseResponse;

/**
 * @author yang fang yu
 * @since 2019/11/29 14:05
 */
public class E726Response extends BaseResponse {
     private String orderId;
     private String pushType;

    public String getOrderId() {
        return orderId;
    }

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

    public String getPushType() {
        return pushType;
    }

    public void setPushType(String pushType) {
        this.pushType = pushType;
    }
}