This commit is contained in:
yumoqing 2025-01-12 15:36:51 +08:00
parent a4701a565c
commit df879450ea

View File

@ -21,7 +21,7 @@ from appPublic.Singleton import GlobalEnv
from appPublic.argsConvert import ArgsConvert from appPublic.argsConvert import ArgsConvert
from appPublic.timeUtils import str2Date,str2Datetime,curDatetime, \ from appPublic.timeUtils import str2Date,str2Datetime,curDatetime, \
getCurrentTimeStamp,curDateString, curTimeString, \ getCurrentTimeStamp,curDateString, curTimeString, \
monthfirstday, strdate_add monthfirstday, strdate_add, timestampstr
from appPublic.dataencoder import quotedstr from appPublic.dataencoder import quotedstr
from appPublic.folderUtils import folderInfo from appPublic.folderUtils import folderInfo
from appPublic.uniqueID import setNode,getID from appPublic.uniqueID import setNode,getID
@ -208,6 +208,7 @@ def initEnv():
g.random = random g.random = random
g.str2date = str2Date g.str2date = str2Date
g.str2datetime = str2Datetime g.str2datetime = str2Datetime
g.timestampstr = timestampstr
g.monthfirstday = monthfirstday g.monthfirstday = monthfirstday
g.curDatetime = curDatetime g.curDatetime = curDatetime
g.strdate_add = strdate_add g.strdate_add = strdate_add