码迷,mamicode.com
首页 > 其他好文 > 详细

基础实体类

时间:2018-09-07 16:02:52      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:lang   json   set   warnings   turn   对象   class   rom   lan   

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();
    }

}

 

基础实体类

标签:lang   json   set   warnings   turn   对象   class   rom   lan   

原文地址:https://www.cnblogs.com/huanghuanghui/p/9604847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!