10 lines
233 B
Bash
Executable File
10 lines
233 B
Bash
Executable File
#! /bin/bash
|
|
# goctl model mysql ddl --src ./ddl/$1.sql --dir model/ --home ./goctl_template
|
|
if [ $# -gt 0 ]
|
|
then
|
|
name=${1%%\\*}
|
|
go run generator/main.go -name $name
|
|
else
|
|
echo "输入: - 表示所有表. 或者 单表名"
|
|
fi
|