Browse Source

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx 2 years ago
parent
commit
58613883db
2 changed files with 4 additions and 2 deletions
  1. 1 1
      conf/app.conf
  2. 3 1
      main.go

+ 1 - 1
conf/app.conf View File

@@ -45,7 +45,7 @@ appsecret="61ee2e6268497d5aa9de0b0187c39aea"
45 45
 
46 46
 
47 47
 [prod]
48
-org_id = 10191
48
+org_id = 10217
49 49
 
50 50
 mobile_token_expiration_second = 86400
51 51
 httpdomain = https://api.xt.kuyicloud.com

+ 3 - 1
main.go View File

@@ -20,7 +20,9 @@ func init() {
20 20
 	miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
21 21
 	CreateLog(miConfig)
22 22
 	UploadLog(miConfig)
23
-	service.GetFjAuthorizationInfo(miConfig.Code)
23
+	if org_id == 10191 {
24
+		service.GetFjAuthorizationInfo(miConfig.Code)
25
+	}
24 26
 }
25 27
 func main() {
26 28
 	beego.Run()