Commit cf517797 authored by lee_mingzhu's avatar lee_mingzhu

remove some field

parent 8bdc4b7b
package cn.quantgroup.xyqb.entity;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import javax.persistence.*;
import java.io.Serializable;
import java.sql.Timestamp;
/**
* Created by 11 on 2017/1/17.
......@@ -40,6 +38,8 @@ public class WechatUserInfo implements Serializable{
private String country;
@Column(name = "head_img_url")
private String headImgUrl;
@Column(name = "privilege")
private String[] privilege;
@Column(name = "created_at")
private Timestamp createdAt = new Timestamp(System.currentTimeMillis());
@Column(name = "updated_at")
private Timestamp updatedAt = new Timestamp(System.currentTimeMillis());
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment