LCTOrderStatusSyncResponse.java 644 Bytes
package com.xiniunet.lecunstomization.response;

import com.xiniunet.framework.base.BaseResponse;

import java.util.List;

/**
 * Created by sally on 15/5/13.
 */
public class LCTOrderStatusSyncResponse extends BaseResponse {

    /**
     * 订单头ID
     */
    private List<Long> orderIdList;

    public List<Long> getOrderIdList() {
        return orderIdList;
    }

    public void setOrderIdList(List<Long> orderIdList) {
        this.orderIdList = orderIdList;
    }

    private Long result;

    public Long getResult() {
        return result;
    }

    public void setResult(Long result) {
        this.result = result;
    }
}