Commit 1ee12411 authored by Zhang's avatar Zhang

Upload New File

parent f853e6f8
package com.mybatis.model;
package com.mybatis.model;
public class Context {
String username;
String love;
public Context(){}
public Context(String name,String msg){
this.username=name;
this.love=msg;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getLove() {
return love;
}
public void setLove(String love) {
this.love = love;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment