local time = timestampAlign10(StringUtils:Time())
local timeNow = StringUtils:FormatTime("%Y%m%d%H%M%S",time);
local tim = tonumber(timeNow) % 1000000;
return tim;
elseif type == "Day" then -------当前月日
local dayNow = StringUtils:FormatTime("%Y%m%d",time);
return tonumber(dayNow);
else ------------年月日,时分秒
return tonumber(timeNow);
end