Logo

GitLab

Sign in

customer / shanghai-railway-web

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • shanghai-railway-web
  • ..
  • domain
  • IdGetResponse.java
  • init
    df2fa2d5
    薛磊 authored
    2018-03-19 16:46:58 +0800  
    Browse Code »
IdGetResponse.java 383 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
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;
    }
}