rexUps

package
v1.0.13 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 22, 2025 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BaseService added in v1.0.5

type BaseService interface {
	Bootstrap(ctx context.Context, params *rexTypes.UpsBaseBootstrapReq) (code int32, result *rexTypes.UpsBaseBootstrapResp, err error)
	Create(ctx context.Context, params *rexTypes.AllowCreateModelObject) (code int32, result *rexTypes.ObjectApiCreateResp, err error)
	Delete(ctx context.Context, params *rexTypes.ObjectApiFormIdReq) (code int32, result *rexTypes.ObjectApiOKResp, err error)
	DeleteMany(ctx context.Context, params *rexTypes.ObjectApiJsonIdsReq) (code int32, result *rexTypes.ObjectApiOKResp, err error)
	Update(ctx context.Context, params *rexTypes.AllowUpdateModelObject) (code int32, result *rexTypes.ObjectApiOKResp, err error)
	UpdateStatus(ctx context.Context, params *rexTypes.AllowUpdateStatusModelObject) (code int32, result *rexTypes.ObjectApiOKResp, err error)
	Query(ctx context.Context, params *rexTypes.ObjectApiFormIdReq) (code int32, result *rexTypes.ModelObject, err error)
	QueryWhereObjectId(ctx context.Context, params *rexTypes.ObjectApiQueryWhreObjectIdReq) (code int32, result *rexTypes.ModelObject, err error)
	QueryListWhereIds(ctx context.Context, params *rexTypes.ObjectApiJsonIdsReq) (code int32, result *rexTypes.ObjectCommonQueryListResp, err error)
	QueryList(ctx context.Context, params *rexTypes.ObjectCommonSearchParams) (code int32, result *rexTypes.ObjectCommonQueryListResp, err error)
}

func NewBaseService added in v1.0.5

func NewBaseService(SdkCtx *sdkCtx.SdkCtx) BaseService

type IndustryService added in v1.0.5

type IndustryService interface {
	Create(ctx context.Context, params *rexTypes.AllowCreateModelIndustry) (code int32, result *rexTypes.IndustryApiCreateResp, err error)
	Delete(ctx context.Context, params *rexTypes.IndustryApiFormIdReq) (code int32, result *rexTypes.IndustryApiOKResp, err error)
	DeleteMany(ctx context.Context, params *rexTypes.IndustryApiJsonIdsReq) (code int32, result *rexTypes.IndustryApiOKResp, err error)
	Update(ctx context.Context, params *rexTypes.AllowUpdateModelIndustry) (code int32, result *rexTypes.IndustryApiOKResp, err error)
	UpdateStatus(ctx context.Context, params *rexTypes.AllowUpdateStatusModelIndustry) (code int32, result *rexTypes.IndustryApiOKResp, err error)
	Query(ctx context.Context, params *rexTypes.IndustryApiFormIdReq) (code int32, result *rexTypes.ModelIndustry, err error)
	QueryListWhereIds(ctx context.Context, params *rexTypes.IndustryApiJsonIdsReq) (code int32, result *rexTypes.IndustryCommonQueryListResp, err error)
	QueryList(ctx context.Context, params *rexTypes.IndustryCommonSearchParams) (code int32, result *rexTypes.IndustryCommonQueryListResp, err error)
}

func NewIndustryService added in v1.0.5

func NewIndustryService(SdkCtx *sdkCtx.SdkCtx) IndustryService

type ShortLinkService added in v1.0.5

type ShortLinkService interface {
	GetRedirectResult(ctx context.Context, params *rexTypes.GetRedirectResultReq) (code int32, result *rexTypes.GetRedirectResultResp, err error)
	Create(ctx context.Context, params *rexTypes.AllowCreateModelShortLink) (code int32, result *rexTypes.ShortLinkApiCreateResp, err error)
	Delete(ctx context.Context, params *rexTypes.ShortLinkApiFormIdReq) (code int32, result *rexTypes.ShortLinkApiOKResp, err error)
	DeleteMany(ctx context.Context, params *rexTypes.ShortLinkApiJsonIdsReq) (code int32, result *rexTypes.ShortLinkApiOKResp, err error)
	Update(ctx context.Context, params *rexTypes.AllowUpdateModelShortLink) (code int32, result *rexTypes.ShortLinkApiOKResp, err error)
	UpdateStatus(ctx context.Context, params *rexTypes.AllowUpdateStatusModelShortLink) (code int32, result *rexTypes.ShortLinkApiOKResp, err error)
	Query(ctx context.Context, params *rexTypes.ShortLinkApiFormIdReq) (code int32, result *rexTypes.ModelShortLink, err error)
	QueryWhereKey(ctx context.Context, params *rexTypes.ShortLinkApiFormKeyReq) (code int32, result *rexTypes.ModelShortLink, err error)
	QueryListWhereIds(ctx context.Context, params *rexTypes.ShortLinkApiJsonIdsReq) (code int32, result *rexTypes.ShortLinkCommonQueryListResp, err error)
	QueryList(ctx context.Context, params *rexTypes.ShortLinkCommonSearchParams) (code int32, result *rexTypes.ShortLinkCommonQueryListResp, err error)
}

func NewShortLinkService added in v1.0.5

func NewShortLinkService(SdkCtx *sdkCtx.SdkCtx) ShortLinkService

type TagService added in v1.0.5

type TagService interface {
	Create(ctx context.Context, params *rexTypes.AllowCreateModelTag) (code int32, result *rexTypes.TagApiCreateResp, err error)
	Delete(ctx context.Context, params *rexTypes.TagApiFormIdReq) (code int32, result *rexTypes.TagApiOKResp, err error)
	DeleteMany(ctx context.Context, params *rexTypes.TagApiJsonIdsReq) (code int32, result *rexTypes.TagApiOKResp, err error)
	Update(ctx context.Context, params *rexTypes.AllowUpdateModelTag) (code int32, result *rexTypes.TagApiOKResp, err error)
	UpdateStatus(ctx context.Context, params *rexTypes.AllowUpdateStatusModelTag) (code int32, result *rexTypes.TagApiOKResp, err error)
	Query(ctx context.Context, params *rexTypes.TagApiFormIdReq) (code int32, result *rexTypes.ModelTag, err error)
	QueryListWhereIds(ctx context.Context, params *rexTypes.TagApiJsonIdsReq) (code int32, result *rexTypes.TagCommonQueryListResp, err error)
	QueryList(ctx context.Context, params *rexTypes.TagCommonSearchParams) (code int32, result *rexTypes.TagCommonQueryListResp, err error)
}

func NewTagService added in v1.0.5

func NewTagService(SdkCtx *sdkCtx.SdkCtx) TagService

type UpsService

type UpsService struct {
	BaseService
	TagService       TagService
	IndustryService  IndustryService
	ShortLinkService ShortLinkService
}

func NewUpsService

func NewUpsService(SdkCtx *sdkCtx.SdkCtx) UpsService

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL