IdGetResponse.java
383 Bytes
package com.xiniunet.web.home.domain;
import com.xiniunet.framework.base.BaseResponse;
/**
 * Created by 范智凝 on 2014-10-24 13:00:30.
 *
 * @author 范智凝
 */
public class IdGetResponse extends BaseResponse {
    /**
     * ID
     */
    private Long id;
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
}