소스 검색

Merge branch 'cygx_12.0' of http://8.136.199.33:3000/hongze/hongze_cygx into debug

xingzai 1 년 전
부모
커밋
edf7a78ce3
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      models/cygx_yanxuan_special_user.go

+ 3 - 2
models/cygx_yanxuan_special_user.go

@@ -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
 }