Documentation ¶
Index ¶
- type ExampleDaoImpl
- func (inst *ExampleDaoImpl) Find(id dxo.ExampleID) (*entity.Example, error)
- func (inst *ExampleDaoImpl) Insert(o *entity.Example) (*entity.Example, error)
- func (inst *ExampleDaoImpl) ListAll() ([]*entity.Example, error)
- func (inst *ExampleDaoImpl) Remove(id dxo.ExampleID) error
- func (inst *ExampleDaoImpl) Update(id dxo.ExampleID, o *entity.Example) (*entity.Example, error)
- type RepositoryDaoImpl
- func (inst *RepositoryDaoImpl) Find(id dxo.LocalRepositoryID) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByDotGit(path string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByName(name string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByPath(path string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByUUID(uuid dxo.UUID) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByWorkingDir(path string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) Insert(o *entity.LocalRepository) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) ListAll() ([]*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) ListByIds(ids []dxo.LocalRepositoryID) ([]*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) Remove(id dxo.LocalRepositoryID) error
- func (inst *RepositoryDaoImpl) Update(id dxo.LocalRepositoryID, o1 *entity.LocalRepository) (*entity.LocalRepository, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ExampleDaoImpl ¶
type ExampleDaoImpl struct { markup.Component `id:"ExampleDAO"` Agent dbagent.GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
ExampleDaoImpl ...
func (*ExampleDaoImpl) ListAll ¶
func (inst *ExampleDaoImpl) ListAll() ([]*entity.Example, error)
ListAll ...
type RepositoryDaoImpl ¶
type RepositoryDaoImpl struct { markup.Component `id:"LocalRepositoryDAO"` Agent dbagent.GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
RepositoryDaoImpl ...
func (*RepositoryDaoImpl) Find ¶
func (inst *RepositoryDaoImpl) Find(id dxo.LocalRepositoryID) (*entity.LocalRepository, error)
Find ...
func (*RepositoryDaoImpl) FindByDotGit ¶
func (inst *RepositoryDaoImpl) FindByDotGit(path string) (*entity.LocalRepository, error)
FindByDotGit ...
func (*RepositoryDaoImpl) FindByName ¶
func (inst *RepositoryDaoImpl) FindByName(name string) (*entity.LocalRepository, error)
FindByName ...
func (*RepositoryDaoImpl) FindByPath ¶
func (inst *RepositoryDaoImpl) FindByPath(path string) (*entity.LocalRepository, error)
FindByPath ...
func (*RepositoryDaoImpl) FindByUUID ¶
func (inst *RepositoryDaoImpl) FindByUUID(uuid dxo.UUID) (*entity.LocalRepository, error)
FindByUUID ...
func (*RepositoryDaoImpl) FindByWorkingDir ¶
func (inst *RepositoryDaoImpl) FindByWorkingDir(path string) (*entity.LocalRepository, error)
FindByWorkingDir ...
func (*RepositoryDaoImpl) Insert ¶
func (inst *RepositoryDaoImpl) Insert(o *entity.LocalRepository) (*entity.LocalRepository, error)
Insert ...
func (*RepositoryDaoImpl) ListAll ¶
func (inst *RepositoryDaoImpl) ListAll() ([]*entity.LocalRepository, error)
ListAll ...
func (*RepositoryDaoImpl) ListByIds ¶ added in v0.0.12
func (inst *RepositoryDaoImpl) ListByIds(ids []dxo.LocalRepositoryID) ([]*entity.LocalRepository, error)
ListByIds ...
func (*RepositoryDaoImpl) Remove ¶
func (inst *RepositoryDaoImpl) Remove(id dxo.LocalRepositoryID) error
Remove ...
func (*RepositoryDaoImpl) Update ¶
func (inst *RepositoryDaoImpl) Update(id dxo.LocalRepositoryID, o1 *entity.LocalRepository) (*entity.LocalRepository, error)
Update ...
Click to show internal directories.
Click to hide internal directories.