Logo

GitLab

Sign in

徐文豪 / contrch_signs

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • contrch_signs
  • ..
  • domain
  • SignResult.java
  • master
    402459cd
    徐文豪 authored
    2018-04-29 16:16:44 +0800  
    Browse Code »
SignResult.java 461 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.example.demo.domain;

/**
 * Created by xuwenhao on 2018/4/28.
 */
public class SignResult {
    private boolean success;
    private String applyNo;

    public boolean isSuccess() {
        return success;
    }

    public void setSuccess(boolean success) {
        this.success = success;
    }

    public String getApplyNo() {
        return applyNo;
    }

    public void setApplyNo(String applyNo) {
        this.applyNo = applyNo;
    }
}