1 Star 0 Fork 1

zhengjunbo/dbcompare

forked from khda/dbcompare 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
db_field.py 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
khda 提交于 2021-10-19 16:24 +08:00 . first commit
# -*- coding=utf-8 -*-
class DBField:
def __init__(self, field_name, position, default_value, nullable, \
data_type, field_comment, data_length, data_precision, data_scale):
self.field_name = field_name
self.position = position
self.default_value = default_value
self.nullable = nullable
self.data_type = data_type
self.field_comment = field_comment
self.data_length = data_length
self.data_precision = data_precision
self.data_scale = data_scale
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhengjunbo/dbcompare.git
git@gitee.com:zhengjunbo/dbcompare.git
zhengjunbo
dbcompare
dbcompare
master

搜索帮助