Browse Source

11月8日库存管理

XMLWAN 3 years ago
parent
commit
60c24886c6
2 changed files with 3 additions and 1 deletions
  1. 1 1
      conf/app.conf
  2. 2 0
      models/his_models.go

+ 1 - 1
conf/app.conf View File

@@ -1,5 +1,5 @@
1 1
 appname = 血透
2
-httpport = 9529
2
+httpport = 9531
3 3
 runmode = dev
4 4
 
5 5
 #

+ 2 - 0
models/his_models.go View File

@@ -1650,6 +1650,7 @@ type SgjAdmin struct {
1650 1650
 	Wechat       string `gorm:"column:wechat" json:"wechat" form:"wechat"`
1651 1651
 	Qqchat       string `gorm:"column:qqchat" json:"qqchat" form:"qqchat"`
1652 1652
 	Email        string `gorm:"column:email" json:"email" form:"email"`
1653
+	WechatLink   string `gorm:"column:wechat_link" json:"wechat_link" form:"wechat_link"`
1653 1654
 }
1654 1655
 
1655 1656
 func (SgjAdmin) TableName() string {
@@ -1669,4 +1670,5 @@ type SgjOrgFollow struct {
1669 1670
 	Wechat      string `gorm:"column:wechat" json:"wechat" form:"wechat"`
1670 1671
 	Qqchat      string `gorm:"column:qqchat" json:"qqchat" form:"qqchat"`
1671 1672
 	Email       string `gorm:"column:email" json:"email" form:"email"`
1673
+	WechatLink  string `gorm:"column:wechat_link" json:"wechat_link" form:"wechat_link"`
1672 1674
 }