Parcourir la source

#6973 【Go查询】公告通知查询接口“QueryNotice”,返回内容字段变更为content2

deng.yinping il y a 5 mois
Parent
commit
198d90e8c8
5 fichiers modifiés avec 23 ajouts et 22 suppressions
  1. 1 1
      controllers/common/notice.go
  2. 1 1
      docs/docs.go
  3. 1 1
      docs/swagger.json
  4. 1 1
      docs/swagger.yaml
  5. 19 18
      models/common.go

+ 1 - 1
controllers/common/notice.go

@@ -284,6 +284,6 @@ func NoticeReaded(c *gin.Context) {
 	}
 
 	// 执行成功
-	logger.GetLogger().Debugln("NoticeReaded successed: %v", "ok")
+	logger.GetLogger().Debugf("NoticeReaded successed: %v", "ok")
 	appG.Response(http.StatusOK, e.SUCCESS, "")
 }

+ 1 - 1
docs/docs.go

@@ -25130,7 +25130,7 @@ const docTemplate = `{
                     "type": "integer"
                 },
                 "content": {
-                    "description": "内容",
+                    "description": "内容 - 返回content2",
                     "type": "string"
                 },
                 "createtime": {

+ 1 - 1
docs/swagger.json

@@ -25121,7 +25121,7 @@
                     "type": "integer"
                 },
                 "content": {
-                    "description": "内容",
+                    "description": "内容 - 返回content2",
                     "type": "string"
                 },
                 "createtime": {

+ 1 - 1
docs/swagger.yaml

@@ -671,7 +671,7 @@ definitions:
         description: 自增ID
         type: integer
       content:
-        description: 内容
+        description: 内容 - 返回content2
         type: string
       createtime:
         description: 创建时间

+ 19 - 18
models/common.go

@@ -137,24 +137,25 @@ func (Enumdicitem) TableName() string {
 
 // Noticemsg 公告消息表
 type Noticemsg struct {
-	Autoid         int32     `json:"autoid"  xorm:"'AUTOID'" binding:"required"` // 自增ID
-	Msgtype        int32     `json:"msgtype"  xorm:"'MSGTYPE'"`                  // 消息类型 - 1:公告通知 2:系统消息 3:商品到期提货通知
-	Title          string    `json:"title"  xorm:"'TITLE'"`                      // 标题
-	Content        string    `json:"content"  xorm:"'CONTENT'"`                  // 内容
-	Scheduletime   time.Time `json:"-"  xorm:"'SCHEDULETIME'"`                   // 计划发送时间
-	Publisher      string    `json:"publisher"  xorm:"'PUBLISHER'"`              // 消息发布者
-	Sendtype       int32     `json:"-"  xorm:"'SENDTYPE'"`                       // 推送方式 - 1:全体广播 2:按会员广播 3:个人推送 4:按会员广播(仅会员)
-	Userid         int64     `json:"-"  xorm:"'USERID'"`                         // 会员/投资者ID推送方式 为 个人时,填写投资者ID
-	Istop          int32     `json:"istop"  xorm:"'ISTOP'"`                      // 是否置顶 - 0:不置顶 1:置顶
-	Sentstatus     int32     `json:"sentstatus"  xorm:"'SENTSTATUS'"`            // 推送状态 - 0:未推送 1:已推送 2:审核拒绝
-	Endtime        time.Time `json:"-"  xorm:"'ENDTIME'"`                        // 结束时间
-	Creatorid      int64     `json:"-"  xorm:"'CREATORID'"`                      // 建仓人
-	Createtime     time.Time `json:"createtime"  xorm:"'CREATETIME'"`            // 创建时间
-	Auditoruserid  int64     `json:"-"  xorm:"'AUDITORUSERID'"`                  // 审核人
-	Audittime      time.Time `json:"-"  xorm:"'AUDITTIME'"`                      // 审核日期
-	Auditremark    string    `json:"-"  xorm:"'AUDITREMARK'"`                    // 审核备注
-	Msgiconurl     string    `json:"msgiconurl"  xorm:"'MSGICONURL'"`            // 消息图标Url
-	IsforceDisplay int32     `json:"isforcedisplay"  xorm:"'ISFORCEDISPLAY'"`    // 是否强制显示 - 0:不强制 1:强制
+	Autoid  int32  `json:"autoid"  xorm:"'AUTOID'" binding:"required"` // 自增ID
+	Msgtype int32  `json:"msgtype"  xorm:"'MSGTYPE'"`                  // 消息类型 - 1:公告通知 2:系统消息 3:商品到期提货通知
+	Title   string `json:"title"  xorm:"'TITLE'"`                      // 标题
+	// Content        string    `json:"content"  xorm:"'CONTENT'"`                  // 内容
+	Scheduletime   time.Time `json:"-"  xorm:"'SCHEDULETIME'"`                // 计划发送时间
+	Publisher      string    `json:"publisher"  xorm:"'PUBLISHER'"`           // 消息发布者
+	Sendtype       int32     `json:"-"  xorm:"'SENDTYPE'"`                    // 推送方式 - 1:全体广播 2:按会员广播 3:个人推送 4:按会员广播(仅会员)
+	Userid         int64     `json:"-"  xorm:"'USERID'"`                      // 会员/投资者ID推送方式 为 个人时,填写投资者ID
+	Istop          int32     `json:"istop"  xorm:"'ISTOP'"`                   // 是否置顶 - 0:不置顶 1:置顶
+	Sentstatus     int32     `json:"sentstatus"  xorm:"'SENTSTATUS'"`         // 推送状态 - 0:未推送 1:已推送 2:审核拒绝
+	Endtime        time.Time `json:"-"  xorm:"'ENDTIME'"`                     // 结束时间
+	Creatorid      int64     `json:"-"  xorm:"'CREATORID'"`                   // 建仓人
+	Createtime     time.Time `json:"createtime"  xorm:"'CREATETIME'"`         // 创建时间
+	Auditoruserid  int64     `json:"-"  xorm:"'AUDITORUSERID'"`               // 审核人
+	Audittime      time.Time `json:"-"  xorm:"'AUDITTIME'"`                   // 审核日期
+	Auditremark    string    `json:"-"  xorm:"'AUDITREMARK'"`                 // 审核备注
+	Msgiconurl     string    `json:"msgiconurl"  xorm:"'MSGICONURL'"`         // 消息图标Url
+	IsforceDisplay int32     `json:"isforcedisplay"  xorm:"'ISFORCEDISPLAY'"` // 是否强制显示 - 0:不强制 1:强制
+	Content        string    `json:"content"  xorm:"'CONTENT2'"`              // 内容 - 返回content2
 }
 
 // TableName is NOTICEMSG