基础实体类

Posted huanghuanghui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础实体类相关的知识,希望对你有一定的参考价值。

package com.jn.tpr.entity.basic;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import java.io.Serializable;
import java.lang.reflect.Type;

/**
 * 基础实体类,所有的实体都应继承当前的基础实体类
 */
@SuppressWarnings("serial")
public class Entity<TEntity> implements Serializable {

    /**
     * 对象复制
     */
    public TEntity copy(Entity entity) {
        Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();
        TEntity copy = (TEntity) gson.fromJson(gson.toJson(entity), this.getClass());
        return copy;
    }

    /**
     * 转换为json字符串
     */
    public String toJson() {
        return new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create().toJson(this);
    }

    public Entity() {
    }

    public TEntity toEntity(String json) {
        return (TEntity) new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create().fromJson(json, this.getClass());
    }

    public TEntity toEntity(String json, Type type) {
        return (TEntity) new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create().fromJson(json, type);
    }

    @Override
    public String toString() {
        return toJson();
    }

}

 

以上是关于基础实体类的主要内容,如果未能解决你的问题,请参考以下文章

JAVA中,类、对象、实体、实体类、实体对象之间存在怎样的联系??请高手做形象的解释。

JAVA自动创建实体类工具?

基础实体类

集合总结(全是代码)----------java基础学习

java基础-- 类对象

MyBatis查询mysql数据返回null