2025-04-30 15:46:14 +08:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
2025-05-16 15:17:10 +08:00
|
|
|
"admin/internal/model/dto"
|
2025-04-30 15:46:14 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
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 {
|
|
|
|
}
|