Skip to content

Commit 9337a73

Browse files
authored
fix readme & refactor log format (#24)
1 parent 92bd01b commit 9337a73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if err != nil {
8282
```
8383
type TestTable struct {
8484
//指定table name
85-
TestTable gobatis.ModelName "test_table"
85+
TestTable gobatis.TableName "test_table"
8686
//指定表字段id
8787
Id int64 `column:"id"`
8888
//指定表字段username

errors/errcode.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ func gobatisError(code, message string) errCode {
7171
}
7272

7373
func (e errCode) Error() string {
74-
return fmt.Sprintf("%s: %s", e.code, e.message)
74+
return fmt.Sprintf("%s - %s", e.code, e.message)
7575
}

0 commit comments

Comments
 (0)