package base import ( model "leit.com/LAPP_GAAS_GFrame/models/base" "leit.com/LAPP_GAAS_GFrame/services/base/implments" "leit.com/LAPP_GAAS_GFrame/web/models" ) type AttributeValstService interface { Select(map[string]string, *models.Usertab) (interface{}, error) InsertOne(*models.Usertab, *model.AttributeValst) error DeleteOne(*models.Usertab, int, int) error SelectOne(*models.Usertab, int, int) (*model.AttributeValst, error) UpdateOne(*models.Usertab, *model.AttributeValst) error } func NewAttributeValstService() AttributeValstService { return implments.NewAttributeValstServiceImplement() }