Commit 09cc1b74 authored by zhouqian's avatar zhouqian

Merge remote-tracking branch 'origin/xyqb-user2-wechat' into xyqb-user2-wechat

parents 68ce0605 cf517797
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