ziwen 1 year ago
parent
commit
f2d5021d9e
3 changed files with 23 additions and 19 deletions
  1. 7 4
      controller/help_doc.go
  2. BIN
      hz_eta_docs_api
  3. 16 15
      models/crm/help_doc.go

+ 7 - 4
controller/help_doc.go

@@ -9,6 +9,7 @@ import (
 	"hongze/hz_eta_docs_api/models/crm"
 	"hongze/hz_eta_docs_api/models/request"
 	"hongze/hz_eta_docs_api/services"
+	"hongze/hz_eta_docs_api/utils"
 	"html"
 )
 
@@ -156,16 +157,18 @@ func (a *HelpDocController) Detail(c *gin.Context) {
 		ClassifyId:    item.ClassifyId,
 		Title:         item.Title,
 		Author:        item.Author,
-		CreateTime:    item.CreateTime,
-		ModifyTime:    item.ModifyTime,
+		CreateTime:    item.CreateTime.Format(utils.FormatDateTime),
+		ModifyTime:    item.ModifyTime.Format(utils.FormatDateTime),
 		Status:        item.Status,
-		PublishTime:   item.PublishTime,
+		PublishTime:   item.PublishTime.Format(utils.FormatDateTime),
 		Content:       item.Content,
 		AdminId:       item.AdminId,
 		AdminRealName: item.AdminRealName,
 		Anchor:        anchor,
 		Recommend:     recommend,
 	}
-
+	if item.PublishTime.IsZero() {
+		respItem.PublishTime = ""
+	}
 	resp.OkData("获取成功", respItem, c)
 }

BIN
hz_eta_docs_api


+ 16 - 15
models/crm/help_doc.go

@@ -2,23 +2,24 @@ package crm
 
 import (
 	"hongze/hz_eta_docs_api/global"
+	"time"
 )
 
 type HelpDoc struct {
-	Id            int    `gorm:"column:id;primary_key;AUTO_INCREMENT" json:"id"`
-	ClassifyId    int    `gorm:"column:classify_id;default:0" json:"classify_id"`                 // 分类id
-	ClassifyName  string `gorm:"column:classify_name" json:"classify_name"`                       // 分类名称
-	Title         string `gorm:"column:title" json:"title"`                                       // 标题
-	Author        string `gorm:"column:author" json:"author"`                                     // 作者
-	CreateTime    string `gorm:"column:create_time;default:CURRENT_TIMESTAMP" json:"create_time"` // 创建时间
-	ModifyTime    string `gorm:"column:modify_time;default:CURRENT_TIMESTAMP" json:"modify_time"` // 修改时间
-	Status        int    `gorm:"column:status;default:1" json:"status"`                           // 1:未发布,2:已发布
-	PublishTime   string `gorm:"column:publish_time" json:"publish_time"`                         // 发布时间
-	Content       string `gorm:"column:content" json:"content"`                                   // 内容
-	AdminId       int  `gorm:"column:admin_id;default:0;NOT NULL" json:"admin_id"`              // 创建人
-	AdminRealName string `gorm:"column:admin_real_name" json:"admin_real_name"`                   // 创建人姓名
-	Anchor        string `gorm:"column:anchor" json:"anchor"`                                     // 锚点
-	Recommend     string `gorm:"column:recommend" json:"recommend"`                               // 推荐
+	Id            int       `gorm:"column:id;primary_key;AUTO_INCREMENT" json:"id"`
+	ClassifyId    int       `gorm:"column:classify_id;default:0" json:"classify_id"`                 // 分类id
+	ClassifyName  string    `gorm:"column:classify_name" json:"classify_name"`                       // 分类名称
+	Title         string    `gorm:"column:title" json:"title"`                                       // 标题
+	Author        string    `gorm:"column:author" json:"author"`                                     // 作者
+	CreateTime    time.Time `gorm:"column:create_time;default:CURRENT_TIMESTAMP" json:"create_time"` // 创建时间
+	ModifyTime    time.Time `gorm:"column:modify_time;default:CURRENT_TIMESTAMP" json:"modify_time"` // 修改时间
+	Status        int       `gorm:"column:status;default:1" json:"status"`                           // 1:未发布,2:已发布
+	PublishTime   time.Time `gorm:"column:publish_time" json:"publish_time"`                         // 发布时间
+	Content       string    `gorm:"column:content" json:"content"`                                   // 内容
+	AdminId       int       `gorm:"column:admin_id;default:0;NOT NULL" json:"admin_id"`              // 创建人
+	AdminRealName string    `gorm:"column:admin_real_name" json:"admin_real_name"`                   // 创建人姓名
+	Anchor        string    `gorm:"column:anchor" json:"anchor"`                                     // 锚点
+	Recommend     string    `gorm:"column:recommend" json:"recommend"`                               // 推荐
 }
 
 func (m *HelpDoc) TableName() string {
@@ -58,4 +59,4 @@ type AnchorList struct {
 type RecommendList struct {
 	Name string
 	Url  string
-}
+}