Commit 1f58a281 by Joneq

增加一些基本文件

parent 61d02e6d
package main
import "fmt"
//公司信息计算
func CompanyInfo() {
fmt.Print(1)
}
\ No newline at end of file
package main
//企业征信
\ No newline at end of file
package main
//历史交易
\ No newline at end of file
package main
import "fmt"
//当前静态算法内的pid和typeID
const CPID = 1
const CTYPE = 1
func main() {
allUser := getUser()
for k,v := range allUser {
fmt.Print(k)
fmt.Print(v)
}
}
//获取需要计算的用户
func getUser()(map[string]string) {
allUser := make(map[string]string)
allUser["user_id"] = "dsd"
return allUser
}
//获取计算需要的用户详情
func getUserDetail() {
}
\ No newline at end of file
package main
//个人征信
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment