del.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package material
  4. import (
  5. "context"
  6. "encoding/json"
  7. "fmt"
  8. "git.getensh.com/common/gopkgs/database"
  9. "git.getensh.com/common/gopkgs/logger"
  10. "go.uber.org/zap"
  11. "google.golang.org/grpc/status"
  12. "property-common/errors"
  13. dbmodel "property-common/model"
  14. pb_v1 "property-common/pb/v1"
  15. )
  16. //
  17. func MaterialDel(ctx context.Context, req *pb_v1.MaterialDelRequest) (reply *pb_v1.MaterialDelReply, err error) {
  18. reply = &pb_v1.MaterialDelReply{}
  19. // 捕获各个task中的异常并返回给调用者
  20. defer func() {
  21. if r := recover(); r != nil {
  22. err = fmt.Errorf("%+v", r)
  23. e := &status.Status{}
  24. if er := json.Unmarshal([]byte(err.Error()), e); er != nil {
  25. logger.Error("err",
  26. zap.String("system_err", err.Error()),
  27. zap.Stack("stacktrace"))
  28. }
  29. }
  30. }()
  31. // 参数检查
  32. if req.Id == 0 {
  33. return nil, errors.ParamsError
  34. }
  35. p := &dbmodel.TMaterial{}
  36. where := map[string]interface{}{
  37. "id": req.Id,
  38. }
  39. err = p.Delete(database.DB(), where)
  40. if err != nil {
  41. return nil, errors.DataBaseError
  42. }
  43. return reply, nil
  44. }