Commit a61ffec6 authored by qin.wen's avatar qin.wen

--no commit message

parent 036b9386
package com.cesgroup.mybatis2.entity;
package com.cesgroup.mybatis2.entity;
import java.io.Serializable;
import com.alibaba.fastjson.JSONObject;
/**
*
* @author kks
* @date 2020/01/02
*/
public class User implements Serializable {
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public JSONObject getInfo() {
return info;
}
public void setInfo(JSONObject info) {
this.info = info;
}
@Override
public String toString() {
return "User [id=" + id + ", name=" + name + ", info=" + JSONObject.toJSONString(info) + "]";
}
int id;
String name;
JSONObject info;
}
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