From 3fa72ef9cc28df20b8d5f59ffe53cd0a0c29c5f9 Mon Sep 17 00:00:00 2001 From: hujiebin Date: Wed, 7 Jun 2023 11:12:32 +0800 Subject: [PATCH] Update anniversary.go --- cv/cp_cv/anniversary.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cv/cp_cv/anniversary.go b/cv/cp_cv/anniversary.go index db80a41..f022bbe 100644 --- a/cv/cp_cv/anniversary.go +++ b/cv/cp_cv/anniversary.go @@ -12,11 +12,11 @@ type CvCpBase struct { } type CvCpAnniversary struct { - Type cp_e.AnniversaryItemType `json:"type"` // 列表类型 0:普通 1:头像 - CpInfo *CvCpBase `json:"cpInfo"` // cp信息,type=1(头像)时候用到 - Id uint64 `json:"id"` // 记录id - Content string `json:"content"` // 纪念日内容 - Timestamp int64 `json:"timestamp"` // 纪念日时间戳 - IsRemind bool `json:"isRemind"` // 是否提醒 - CanDel bool `json:"canDel"` // 能否删除 + Type cp_e.AnniversaryItemType `json:"type"` // 列表类型 0:普通 1:头像 + CpInfo *CvCpBase `json:"cpInfo,omitempty"` // cp信息,type=1(头像)时候用到 + Id uint64 `json:"id"` // 记录id + Content string `json:"content"` // 纪念日内容 + Timestamp int64 `json:"timestamp"` // 纪念日时间戳 + IsRemind bool `json:"isRemind"` // 是否提醒 + CanDel bool `json:"canDel"` // 能否删除 } -- 2.22.0