Fix fake method

This commit is contained in:
guanguans 2021-01-12 11:18:07 +08:00
parent 827b5e6010
commit 3ae904b5bc
3 changed files with 8 additions and 3 deletions

View File

@ -9,7 +9,7 @@ import (
) )
// 检查ID参数 // 检查ID参数
func CheckIDArgument(id string) bool { func CheckIdArgument(id string) bool {
_, err := GenerateCode(id) _, err := GenerateCode(id)
return err == nil return err == nil

View File

@ -97,7 +97,12 @@ func GetInfo(id string) (IdInfo, error) {
} }
// 生成假身份证号码 // 生成假身份证号码
func Fake(isEighteen bool, address string, birthday string, sex int) string { func FakeId() string {
return FakeRequireId(true, "", "", 0)
}
// 按要求生成假身份证号码
func FakeRequireId(isEighteen bool, address string, birthday string, sex int) string {
// 生成地址码 // 生成地址码
addressCode := GeneratorAddressCode(address) addressCode := GeneratorAddressCode(address)
@ -108,7 +113,7 @@ func Fake(isEighteen bool, address string, birthday string, sex int) string {
orderCode := GeneratorOrderCode(sex) orderCode := GeneratorOrderCode(sex)
if !isEighteen { if !isEighteen {
return addressCode + Substr(birthdayCode, 2, 6) + orderCode return addressCode + Substr(birthdayCode, 2, 8) + orderCode
} }
body := addressCode + birthdayCode + orderCode body := addressCode + birthdayCode + orderCode