Documentation ¶
Overview ¶
银行卡号BIN列表
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CityCsv embed.FS
Functions ¶
Types ¶
type Bank ¶
type Bank struct { Bin uint64 `gorm:"column:id;primaryKey;type:BIGINT UNSIGNED;comment:银行卡所属银行BIN;not null" json:"bin" form:"bin"` // 银行卡号bin Types uint8 `` // 银行卡类型 1-借记卡 2-贷记卡(信用卡) 3-预付费卡 /* 141-byte string literal not displayed */ Platform string `gorm:"column:platform;type:VARCHAR(100);comment:所属银行及类别" json:"platform" form:"platform"` // 所属银行及类别 Length uint8 `gorm:"column:length;type:TINYINT UNSIGNED;index:length;comment:银行卡号长度" json:"length" form:"length"` // 银行卡号长度 Form string `` // 所属来源 icbc-工商银行 abc-农业银行 ccb-建设银行 boc-中国银行 psbc-邮政储蓄 comm-交通银行 cmb-招商银行 ceb-光大银行 other-其他银行 /* 249-byte string literal not displayed */ }
type Config ¶
银行信息CSV为爬虫爬取CSV,当前CSV爬取时间:2023-08-09 19:04:21 CSV文件要求:使用,分割各个列,然后使用换行符分割各个行,内容编码为GBK编码 此模块依赖xlog模块进行日志输出/入库 爬取地址:https://www.chakahao.com CSV格式:【银行卡BIN,卡分类,卡类型,卡号长度,卡所属】 卡分类:1-借记卡 2-贷记卡(信用卡) 3-预付费卡 卡类型:类似【工商银行牡丹灵通卡(银联卡)】的字符串 卡所属:icbc-工商银行 abc-农业银行 ccb-建设银行 boc-中国银行 psbc-邮政储蓄 comm-交通银行 cmb-招商银行 ceb-光大银行 other-其他银行
Click to show internal directories.
Click to hide internal directories.