EmployeeCreditGetResponse.java 1016 Bytes
/*
 * @(#)EmployeeCreditGetResponse.java
 *
 * Copyright (c) 2014-2017  funiu 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.wosaicustomization.response;

import com.xiniunet.wosaicustomization.domain.EmployeeCredit;
import com.xiniunet.framework.base.BaseResponse;

/**
 * 通过id查询员工额度授权的响应.
 * @author xuchang
 */
public class EmployeeCreditGetResponse extends BaseResponse {

    /**
     * 员工额度授权信息
     */
    private EmployeeCredit employeeCredit;

    public EmployeeCredit getEmployeeCredit() {
        return employeeCredit;
    }

    public void setEmployeeCredit(EmployeeCredit employeeCredit) {
        this.employeeCredit = employeeCredit;
    }
}