1 Star 0 Fork 0

schwarizard / TEST

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Message.java 942 Bytes
Copy Edit Raw Blame History
schwarizard authored 2016-05-02 00:16 . new
/**
* Created by Think pad on 2016/5/1.
*/
import java.io.Serializable;
public class Message implements Serializable{
private Long id;
private String name;
private String email;
private String msg;
public Message() {}
public Message(String name, String email, String msg) {
this.name = name;
this.email = email;
this.msg = msg;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Long setID() {
return id;
}
public void setID(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMsg() {
return msg;
}
public void setMsg(String Msg) {
this.msg = msg;
}
}
Java
1
https://gitee.com/schwarizard/TEST.git
git@gitee.com:schwarizard/TEST.git
schwarizard
TEST
TEST
master

Search