Browse Source

Merge branch 'fix/ths_status_20220801' into debug

hsun 2 years ago
parent
commit
2e6ffe90c1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models/tables/report_send_ths_detail/report_send_ths_detail.go

+ 1 - 1
models/tables/report_send_ths_detail/report_send_ths_detail.go

@@ -6,7 +6,7 @@ import (
 
 //报告推送给同花顺的表结构体
 type ReportSendThsDetail struct {
-	SendId     int       `orm:"column(send_id);pk" description:"发送给同花顺的Id"`
+	SendId     int       `gorm:"primaryKey;column:send_id;" description:"发送给同花顺的Id"`
 	ReportId   int       `description:"报告id"`
 	ReportType string    `description:"报告类型"`
 	Status     int8      `description:"发送结果,0:待发送,-1发送失败,1发送成功"`