AdsProof.java
458 Bytes
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;
}
}