Compare commits

..

2 Commits

Author SHA1 Message Date
yumoqing
71035080b6 :Merge branch 'master' of git.kaiyuancloud.cn:yumoqing/ahserver 2024-11-18 13:40:22 +08:00
yumoqing
f100d04fcb bugfix 2024-11-18 13:40:07 +08:00

View File

@ -18,7 +18,9 @@ from appPublic.jsonConfig import getConfig
from appPublic.dictObject import DictObject from appPublic.dictObject import DictObject
from appPublic.Singleton import GlobalEnv from appPublic.Singleton import GlobalEnv
from appPublic.argsConvert import ArgsConvert from appPublic.argsConvert import ArgsConvert
from appPublic.timeUtils import str2Date,str2Datetime,curDatetime,getCurrentTimeStamp,curDateString, curTimeString from appPublic.timeUtils import str2Date,str2Datetime,curDatetime, \
getCurrentTimeStamp,curDateString, curTimeString, \
monthfirstday, strdate_add
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
@ -173,7 +175,9 @@ def initEnv():
g.random = random g.random = random
g.str2date = str2Date g.str2date = str2Date
g.str2datetime = str2Datetime g.str2datetime = str2Datetime
g.monthfirstday = monthfirstday
g.curDatetime = curDatetime g.curDatetime = curDatetime
g.strdate_add = strdate_add
g.uObject = uObject g.uObject = uObject
g.uuid = getID g.uuid = getID
g.runSQL = runSQL g.runSQL = runSQL