WithColumnPrefix set column prefix
(p string)
| 82 | |
| 83 | // WithColumnPrefix set column prefix |
| 84 | func WithColumnPrefix(p string) Option { |
| 85 | return func(o *options) { |
| 86 | o.ColumnPrefix = p |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | // WithJSONTag set json tag, 0 for underscore, other values for hump |
| 91 | func WithJSONTag(namedType int) Option { |
no outgoing calls