• This project
    • Loading...
  • Sign in

fangyeqing / xkl-interface · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • xkl-interface
  • ..
  • model
  • ReportIdModel.java
  • Add report pase, save and delete. Add upsoft version, account.
    2c9515d1
    by zhaoyue
    2016-11-27 23:02:55 +0800  
    Browse Directory »
ReportIdModel.java 331 Bytes
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
package com.xkl.model;


public class ReportIdModel {

    // Report Id
    private int reportId;


    public ReportIdModel(int reportId) {
        this.reportId = reportId;
    }

    public int getReportId() {
        return reportId;
    }

    public void setReportId(int reportId) {
        this.reportId = reportId;
    }
}