GAAS GFrame项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
622 B

package base
import (
model "LAPP_GAAS_GFrame_BACKEND/models/base"
"LAPP_GAAS_GFrame_BACKEND/services/base/implments"
"LAPP_GAAS_GFrame_BACKEND/web/models"
)
type WorkShiftEffLstService interface {
Select(map[string]string, *models.Usertab) (interface{}, error)
InsertOne(*models.Usertab, *model.WorkShiftEffLst) error
DeleteOne(*models.Usertab, int, string) error
SelectOne(*models.Usertab, int, string) (*model.WorkShiftEffLst, error)
UpdateOne(*models.Usertab, *model.WorkShiftEffLst) error
}
func NewWorkShiftEffLstService() WorkShiftEffLstService {
return implments.NewWorkShiftEffLstServiceImplement()
}