Logo

GitLab

Sign in

tutorial / directive

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • directive
  • ..
  • domain
  • IdGetResponse.java
  • 网盘升级
    ef164719
    zhaoxing authored
    2016-05-06 14:36:52 +0800  
    Browse File »
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.erp.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;
    }
}