Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DaoIface ¶
type DaoIface interface { //Insert(entity ModelIface) (int32, error) DeleteById(pkey int64) error //Save(entity *model.SubsysDict) (int32, error) //Update(entity *model.SubsysDict) (int32, error) UpdateNotNull(pkey int64, maps map[string]interface{}) (int32, error) UpdateMap(pkey int64, maps map[string]interface{}) (int32, error) //FindById(pkey int64) (entity *model.SubsysDict, found bool, err error) //FindByIds(pks string) (*[]model.SubsysDict, error) Query(param *page.PageRequest) *page.PageResult Count(param *page.PageRequest) (int, error) }
type DaoIfaceInt32 ¶
type DaoIfaceInt32 interface { //Insert(entity ModelIface) (int32, error) DeleteById(pkey int32) error //Save(entity *model.SubsysDict) (int32, error) //Update(entity *model.SubsysDict) (int32, error) UpdateNotNull(pkey int32, maps map[string]interface{}) (int32, error) UpdateMap(pkey int32, maps map[string]interface{}) (int32, error) //FindById(pkey int32) (entity *model.SubsysDict, found bool, err error) //FindByIds(pks string) (*[]model.SubsysDict, error) Query(param *page.PageRequest) *page.PageResult Count(param *page.PageRequest) (int, error) }
Click to show internal directories.
Click to hide internal directories.