• Sign in

李攀 / fangTang · Files

Favicon

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • fangTang
  • ..
  • model
  • AdsProof.java
  • init gimiCinema
    1b880635
    Penley authored
    2017-02-13 19:09:06 +0800  
    Browse Files »
AdsProof.java 458 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 22 23 24 25 26 27 28 29 30 31
package com.gimi.common.cinema.model;

/**
 * Created by wugian on 2016/8/4
 */
public class AdsProof {

    /**
     * code : 0
     * message : 成功
     */

    private int code;
    private String msg;

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }
}