1 Star 0 Fork 2

何青泉/ExcelToSQL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
models.py 464 Bytes
一键复制 编辑 原始数据 按行查看 历史
全局变量DXL 提交于 2020-07-03 15:24 . 初始化项目文件
# @File : model.py
# @Time : 2020/05/15 16:19:24
# @Author : hyh
# here put the import lib
import random
class Fake:
kind = ''
min = 0
max = 0
def __init__(self, data_dict):
for key, value in data_dict.items():
if hasattr(self, key):
setattr(self, key, value)
def value(self):
if self.kind == 'int':
return random.randint(self.min, self.max)
else:
return ''
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/houtaroy/ExcelToSQL.git
git@gitee.com:houtaroy/ExcelToSQL.git
houtaroy
ExcelToSQL
ExcelToSQL
master

搜索帮助