Skip to content

Commit

Permalink
人群划分
Browse files Browse the repository at this point in the history
  • Loading branch information
maweefeng committed Jan 22, 2018
1 parent 1857458 commit b1f9d5b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions scripts/jyd/32.人群划分列表.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/bash
author='maweefeng'
projectname='FamilyDoctor'
passkeys='code,flag,message'
fileuri='/Users/maweefeng/Desktop/index.html'
offset=1
debug=true
verbose=false
modulename='taskCrowdlist'
httpclient='PMLRESTBaseDoctor'
models=(
#人群划分Data
'modelCrowdListData'
)

for model in ${models[@]}; do
types=${types}${model},
done
types=${types}

if [ "$debug" = true ] ; then
enableDebug='--debug'
fi

if [ "$verbose" = true ] ; then
enableVerbose='--verbose'
fi

./app.js ${enableVerbose} ${enableDebug} \
-C ${types} \
-P ${passkeys} \
-f ${fileuri} \
-a ${author} \
-m ${modulename} \
-j ${projectname} \
-B ${httpclient} \
-o ${offset}

0 comments on commit b1f9d5b

Please sign in to comment.