All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ruijc.BaseObject Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.ruijc;

import com.alibaba.fastjson.JSON;

/**
 * 所有类的基类
 *
 * @author Storezhang
 */
public class BaseObject {

    @Override
    public String toString() {
        return JSON.toJSONString(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy