摘要: here is the code of a structtype Post struct { Id int `db:"id"` Title string `db:"title"` Content string `db:"content"` Create_time int64 `db:"create_time"`}func (p Post) AttrCreatetime() time.Time { return time.Unix(p.Create_time, 0)} How to call the function 阅读全文
posted @ 2013-04-25 11:59 DavidHHuan 阅读(883) 评论(0) 推荐(0) 编辑