product_rule.go 656 B

123456789101112131415161718
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package product_rule
  5. import (
  6. "context"
  7. "demo/api/product_rule/v1"
  8. )
  9. type IProductRuleV1 interface {
  10. Create(ctx context.Context, req *v1.CreateReq) (res *v1.CreateRes, err error)
  11. Update(ctx context.Context, req *v1.UpdateReq) (res *v1.UpdateRes, err error)
  12. GetList(ctx context.Context, req *v1.GetListReq) (res *v1.GetListRes, err error)
  13. Del(ctx context.Context, req *v1.DelReq) (res *v1.DelRes, err error)
  14. }