基础实体类
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(); } }
以上是关于基础实体类的主要内容,如果未能解决你的问题,请参考以下文章