2 Star 0 Fork 1

seraph2047/excel2json

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ICodeGenerator.py 877 Bytes
一键复制 编辑 原始数据 按行查看 历史
seraph2047 提交于 2022-07-21 22:23 . 增加SVN控制上传代码
from abc import abstractmethod
from ExcelData import FieldType
import datetime
class ICodeGenerator:
@abstractmethod
def getFieldType(self, fieldType: FieldType):
"""
获取java字段类型文本
:param fieldType: FieldType
:return: getFieldType(FieldType) --> str 对应代码的类型字符串
"""
pass
@abstractmethod
def loadTemplate(self):
"""
加载代码模板
:return: loadTemplate() --> bool 是否成功加载
"""
pass
@abstractmethod
def generateCode(self, exportDir:str, exportVersion:str, exportTime:datetime):
"""
生成代码 在执行前,必须先执行loadTemplate()
:param exportVersion: str 发布版本号
:param exportTime: datetime 发布日期
:return: bool 是否顺利
"""
pass
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/seraph2047/excel2json.git
git@gitee.com:seraph2047/excel2json.git
seraph2047
excel2json
excel2json
master

搜索帮助