(opts ...DBOption)
| 11 | type IFtpRepo interface { |
| 12 | Get(opts ...DBOption) (model.Ftp, error) |
| 13 | GetList(opts ...DBOption) ([]model.Ftp, error) |
| 14 | Page(limit, offset int, opts ...DBOption) (int64, []model.Ftp, error) |
| 15 | Create(ftp *model.Ftp) error |
| 16 | Update(id uint, vars map[string]interface{}) error |
no outgoing calls
no test coverage detected