B743Request.java 380 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
package com.fadu.app.bean.b;

import com.fadu.app.bean.BaseRequest;

/**
 * 回款信息
 * @author zalman
 *
 */
public class B743Request extends BaseRequest {
	
	private String orderId;//订单号
	
	public B743Request() {
		setActionCode("B743");
	}

	public String getOrderId() {
		return orderId;
	}

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

}