20 lines
440 B
Go
20 lines
440 B
Go
|
package domain
|
||
|
|
||
|
import (
|
||
|
"admin/apps/game/model/dto"
|
||
|
)
|
||
|
|
||
|
type IRestfulEntity interface {
|
||
|
ToCommonDto() dto.CommonDtoValues
|
||
|
}
|
||
|
|
||
|
type IRestfulResourceSvc interface {
|
||
|
List(pageNo, pageLen int, whereValues ...string) ([]*dto.CommonDtoFieldDesc, []IRestfulEntity, error)
|
||
|
Post(obj dto.CommonDtoValues) (IRestfulEntity, error)
|
||
|
Put(obj dto.CommonDtoValues) (IRestfulEntity, error)
|
||
|
Delete(id int) error
|
||
|
}
|
||
|
|
||
|
type IResourceOpPostHook interface {
|
||
|
}
|