|
@@ -44,6 +44,7 @@ type CygxYanxuanSpecialAuthorItem struct {
|
|
|
LatestPublishTime time.Time // 最近更新时间
|
|
|
LatestPublishDate string // 最近更新时间
|
|
|
IsFollow int // 是否已关注 1已关注 0 未关注
|
|
|
+ HasChangeHeadImg int // 是否更换过默认头像 1是,0否
|
|
|
}
|
|
|
|
|
|
func AddCygxYanxuanSpecialAuthor(item *CygxYanxuanSpecialAuthor) (lastId int64, err error) {
|
|
@@ -66,7 +67,7 @@ func EnableYanxuanSpecialAuthor(userId, status int) (err error) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-func GetYanxuanSpecialAuthor(reqUserId, sysUserId int,cond string) (item *CygxYanxuanSpecialAuthorItem, err error) {
|
|
|
+func GetYanxuanSpecialAuthor(reqUserId, sysUserId int, cond string) (item *CygxYanxuanSpecialAuthorItem, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := ``
|
|
|
sql = `SELECT
|
|
@@ -131,7 +132,7 @@ type SaveCygxYanxuanSpecialAuthoHeadImgrReq struct {
|
|
|
func UpdateYanxuanSpecialAuthorHeadImg(item *CygxYanxuanSpecialAuthor) (err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := ``
|
|
|
- sql = `UPDATE cygx_yanxuan_special_author SET head_img=?,modify_time=NOW() WHERE user_id = ? `
|
|
|
+ sql = `UPDATE cygx_yanxuan_special_author SET head_img=?,modify_time=NOW(),has_change_head_img = 1 WHERE user_id = ? `
|
|
|
_, err = o.Raw(sql, item.HeadImg, item.UserId).Exec()
|
|
|
return
|
|
|
}
|