You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//增加
|
|
func Add{{.tableName}}(c *gin.Context) {
|
|
|
|
}
|
|
|
|
//删除
|
|
func Delete{{.tableName}}(c *gin.Context) {
|
|
|
|
}
|
|
|
|
//修改
|
|
func Update{{.tableName}}(c *gin.Context) {
|
|
|
|
}
|
|
|
|
//获取单条
|
|
func Get{{.tableName}}(c *gin.Context) {
|
|
|
|
}
|
|
|
|
//获取列表
|
|
func Page{{.tableName}}(c *gin.Context) {
|
|
|
|
} |