增加基类
This commit is contained in:
parent
2ffa6ba046
commit
0d3820e8c9
|
|
@ -0,0 +1,18 @@
|
||||||
|
package com.ruoyi.common.base;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSON;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author solo
|
||||||
|
* @date 2019/8/23
|
||||||
|
*/
|
||||||
|
public class BaseBean implements Serializable {
|
||||||
|
public BaseBean() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return JSON.toJSONString(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue