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.

20 lines
834 B

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package collect
  5. import (
  6. "context"
  7. "xgit.pub/module/cms/app/api/collect/v1"
  8. )
  9. type ICollectV1 interface {
  10. GetList(ctx context.Context, req *v1.GetListReq) (res *v1.GetListRes, err error)
  11. Create(ctx context.Context, req *v1.CreateReq) (res *v1.CreateRes, err error)
  12. Update(ctx context.Context, req *v1.UpdateReq) (res *v1.UpdateRes, err error)
  13. Delete(ctx context.Context, req *v1.DeleteReq) (res *v1.DeleteRes, err error)
  14. BatchDelete(ctx context.Context, req *v1.BatchDeleteReq) (res *v1.BatchDeleteRes, err error)
  15. Get(ctx context.Context, req *v1.GetReq) (res *v1.GetRes, err error)
  16. }