Documentation ¶
Index ¶
- type DummyJsonPostgresPersistence
- func (c *DummyJsonPostgresPersistence) Create(correlationId string, item tf.Dummy) (result tf.Dummy, err error)
- func (c *DummyJsonPostgresPersistence) DefineSchema()
- func (c *DummyJsonPostgresPersistence) DeleteById(correlationId string, id string) (item tf.Dummy, err error)
- func (c *DummyJsonPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
- func (c *DummyJsonPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
- func (c *DummyJsonPostgresPersistence) GetListByIds(correlationId string, ids []string) (items []tf.Dummy, err error)
- func (c *DummyJsonPostgresPersistence) GetOneById(correlationId string, id string) (item tf.Dummy, err error)
- func (c *DummyJsonPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.DummyPage, err error)
- func (c *DummyJsonPostgresPersistence) Set(correlationId string, item tf.Dummy) (result tf.Dummy, err error)
- func (c *DummyJsonPostgresPersistence) Update(correlationId string, item tf.Dummy) (result tf.Dummy, err error)
- func (c *DummyJsonPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item tf.Dummy, err error)
- type DummyMapPostgresPersistence
- func (c *DummyMapPostgresPersistence) Create(correlationId string, item map[string]interface{}) (result map[string]interface{}, err error)
- func (c *DummyMapPostgresPersistence) DefineSchema()
- func (c *DummyMapPostgresPersistence) DeleteById(correlationId string, id string) (item map[string]interface{}, err error)
- func (c *DummyMapPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
- func (c *DummyMapPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
- func (c *DummyMapPostgresPersistence) GetListByIds(correlationId string, ids []string) (items []map[string]interface{}, err error)
- func (c *DummyMapPostgresPersistence) GetOneById(correlationId string, id string) (item map[string]interface{}, err error)
- func (c *DummyMapPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.MapPage, err error)
- func (c *DummyMapPostgresPersistence) Set(correlationId string, item map[string]interface{}) (result map[string]interface{}, err error)
- func (c *DummyMapPostgresPersistence) Update(correlationId string, item map[string]interface{}) (result map[string]interface{}, err error)
- func (c *DummyMapPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item map[string]interface{}, err error)
- type DummyPostgresPersistence
- func (c *DummyPostgresPersistence) Create(correlationId string, item tf.Dummy) (result tf.Dummy, err error)
- func (c *DummyPostgresPersistence) DefineSchema()
- func (c *DummyPostgresPersistence) DeleteById(correlationId string, id string) (item tf.Dummy, err error)
- func (c *DummyPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
- func (c *DummyPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
- func (c *DummyPostgresPersistence) GetListByIds(correlationId string, ids []string) (items []tf.Dummy, err error)
- func (c *DummyPostgresPersistence) GetOneById(correlationId string, id string) (item tf.Dummy, err error)
- func (c *DummyPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.DummyPage, err error)
- func (c *DummyPostgresPersistence) Set(correlationId string, item tf.Dummy) (result tf.Dummy, err error)
- func (c *DummyPostgresPersistence) Update(correlationId string, item tf.Dummy) (result tf.Dummy, err error)
- func (c *DummyPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item tf.Dummy, err error)
- type DummyRefPostgresPersistence
- func (c *DummyRefPostgresPersistence) Create(correlationId string, item *tf.Dummy) (result *tf.Dummy, err error)
- func (c *DummyRefPostgresPersistence) DeleteById(correlationId string, id string) (item *tf.Dummy, err error)
- func (c *DummyRefPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
- func (c *DummyRefPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
- func (c *DummyRefPostgresPersistence) GetListByIds(correlationId string, ids []string) (items []*tf.Dummy, err error)
- func (c *DummyRefPostgresPersistence) GetOneById(correlationId string, id string) (item *tf.Dummy, err error)
- func (c *DummyRefPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.DummyRefPage, err error)
- func (c *DummyRefPostgresPersistence) Set(correlationId string, item *tf.Dummy) (result *tf.Dummy, err error)
- func (c *DummyRefPostgresPersistence) Update(correlationId string, item *tf.Dummy) (result *tf.Dummy, err error)
- func (c *DummyRefPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item *tf.Dummy, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DummyJsonPostgresPersistence ¶
type DummyJsonPostgresPersistence struct {
persist.IdentifiableJsonPostgresPersistence
}
func NewDummyJsonPostgresPersistence ¶
func NewDummyJsonPostgresPersistence() *DummyJsonPostgresPersistence
func (*DummyJsonPostgresPersistence) DefineSchema ¶ added in v1.2.0
func (c *DummyJsonPostgresPersistence) DefineSchema()
func (*DummyJsonPostgresPersistence) DeleteById ¶
func (*DummyJsonPostgresPersistence) DeleteByIds ¶
func (c *DummyJsonPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
func (*DummyJsonPostgresPersistence) GetCountByFilter ¶
func (c *DummyJsonPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
func (*DummyJsonPostgresPersistence) GetListByIds ¶
func (*DummyJsonPostgresPersistence) GetOneById ¶
func (*DummyJsonPostgresPersistence) GetPageByFilter ¶
func (c *DummyJsonPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.DummyPage, err error)
func (*DummyJsonPostgresPersistence) UpdatePartially ¶
func (c *DummyJsonPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item tf.Dummy, err error)
type DummyMapPostgresPersistence ¶
type DummyMapPostgresPersistence struct {
persist.IdentifiablePostgresPersistence
}
func NewDummyMapPostgresPersistence ¶
func NewDummyMapPostgresPersistence() *DummyMapPostgresPersistence
func (*DummyMapPostgresPersistence) Create ¶
func (c *DummyMapPostgresPersistence) Create(correlationId string, item map[string]interface{}) (result map[string]interface{}, err error)
func (*DummyMapPostgresPersistence) DefineSchema ¶ added in v1.2.0
func (c *DummyMapPostgresPersistence) DefineSchema()
func (*DummyMapPostgresPersistence) DeleteById ¶
func (c *DummyMapPostgresPersistence) DeleteById(correlationId string, id string) (item map[string]interface{}, err error)
func (*DummyMapPostgresPersistence) DeleteByIds ¶
func (c *DummyMapPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
func (*DummyMapPostgresPersistence) GetCountByFilter ¶
func (c *DummyMapPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
func (*DummyMapPostgresPersistence) GetListByIds ¶
func (c *DummyMapPostgresPersistence) GetListByIds(correlationId string, ids []string) (items []map[string]interface{}, err error)
func (*DummyMapPostgresPersistence) GetOneById ¶
func (c *DummyMapPostgresPersistence) GetOneById(correlationId string, id string) (item map[string]interface{}, err error)
func (*DummyMapPostgresPersistence) GetPageByFilter ¶
func (c *DummyMapPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.MapPage, err error)
func (*DummyMapPostgresPersistence) Set ¶ added in v1.1.2
func (c *DummyMapPostgresPersistence) Set(correlationId string, item map[string]interface{}) (result map[string]interface{}, err error)
func (*DummyMapPostgresPersistence) Update ¶
func (c *DummyMapPostgresPersistence) Update(correlationId string, item map[string]interface{}) (result map[string]interface{}, err error)
func (*DummyMapPostgresPersistence) UpdatePartially ¶
func (c *DummyMapPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item map[string]interface{}, err error)
type DummyPostgresPersistence ¶
type DummyPostgresPersistence struct {
persist.IdentifiablePostgresPersistence
}
func NewDummyPostgresPersistence ¶
func NewDummyPostgresPersistence() *DummyPostgresPersistence
func (*DummyPostgresPersistence) DefineSchema ¶ added in v1.2.0
func (c *DummyPostgresPersistence) DefineSchema()
func (*DummyPostgresPersistence) DeleteById ¶
func (*DummyPostgresPersistence) DeleteByIds ¶
func (c *DummyPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
func (*DummyPostgresPersistence) GetCountByFilter ¶
func (c *DummyPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
func (*DummyPostgresPersistence) GetListByIds ¶
func (*DummyPostgresPersistence) GetOneById ¶
func (*DummyPostgresPersistence) GetPageByFilter ¶
func (c *DummyPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.DummyPage, err error)
func (*DummyPostgresPersistence) UpdatePartially ¶
func (c *DummyPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item tf.Dummy, err error)
type DummyRefPostgresPersistence ¶
type DummyRefPostgresPersistence struct {
persist.IdentifiablePostgresPersistence
}
extends IdentifiablePostgresPersistence<Dummy, string> implements IDummyPersistence {
func NewDummyRefPostgresPersistence ¶
func NewDummyRefPostgresPersistence() *DummyRefPostgresPersistence
func (*DummyRefPostgresPersistence) DeleteById ¶
func (*DummyRefPostgresPersistence) DeleteByIds ¶
func (c *DummyRefPostgresPersistence) DeleteByIds(correlationId string, ids []string) (err error)
func (*DummyRefPostgresPersistence) GetCountByFilter ¶
func (c *DummyRefPostgresPersistence) GetCountByFilter(correlationId string, filter *cdata.FilterParams) (count int64, err error)
func (*DummyRefPostgresPersistence) GetListByIds ¶
func (*DummyRefPostgresPersistence) GetOneById ¶
func (*DummyRefPostgresPersistence) GetPageByFilter ¶
func (c *DummyRefPostgresPersistence) GetPageByFilter(correlationId string, filter *cdata.FilterParams, paging *cdata.PagingParams) (page *tf.DummyRefPage, err error)
func (*DummyRefPostgresPersistence) UpdatePartially ¶
func (c *DummyRefPostgresPersistence) UpdatePartially(correlationId string, id string, data *cdata.AnyValueMap) (item *tf.Dummy, err error)
Click to show internal directories.
Click to hide internal directories.