You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
677 B
9 lines
677 B
# 从当前包的 response 模块中导入 create_response 函数和 StateCode 类
|
|
# create_response 函数可能用于创建统一格式的响应数据,方便接口返回规范的数据
|
|
# StateCode 类可能用于定义不同的状态码,以便在响应中明确表示操作结果
|
|
from .response import create_response, StateCode
|
|
# 从当前包的 server 模块中导入三个检查函数
|
|
# checkMobile 函数可能用于检查手机号码的格式是否正确
|
|
# checkIdCard 函数可能用于检查身份证号码的格式和有效性
|
|
# checkBankCard 函数可能用于检查银行卡号码的格式和有效性
|
|
from .server import checkMobile, checkIdCard, checkBankCard |