update@2016-09-20 12:48:09

This commit is contained in:
guobao.jiang 2016-09-20 12:48:11 +08:00
parent d48f781176
commit 862f9b1496
2 changed files with 19 additions and 0 deletions

14
shell/demo.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
echo "parameter $#"
echo "$1"
if [ $# = 1 ];then
DATE=$1
else
DATE=`date +%Y-%m-%d-%H-%M-%S`
fi
echo $DATE

5
sql/ibatis.xml Normal file
View File

@ -0,0 +1,5 @@
<!--返回List<String>-->
<select id="queryDomainKeyList" resultClass="java.lang.String">
SELECT DISTINCT domainKey FROM MetaInfo
</select>