// Copyright 2019 getensh.com. All rights reserved. // Use of this source code is governed by getensh.com. package material import ( "context" "encoding/json" "fmt" "git.getensh.com/common/gopkgs/database" "git.getensh.com/common/gopkgs/logger" "go.uber.org/zap" "google.golang.org/grpc/status" "property-common/errors" dbmodel "property-common/model" pb_v1 "property-common/pb/v1" ) // func MaterialDel(ctx context.Context, req *pb_v1.MaterialDelRequest) (reply *pb_v1.MaterialDelReply, err error) { reply = &pb_v1.MaterialDelReply{} // 捕获各个task中的异常并返回给调用者 defer func() { if r := recover(); r != nil { err = fmt.Errorf("%+v", r) e := &status.Status{} if er := json.Unmarshal([]byte(err.Error()), e); er != nil { logger.Error("err", zap.String("system_err", err.Error()), zap.Stack("stacktrace")) } } }() // 参数检查 if req.Id == 0 { return nil, errors.ParamsError } p := &dbmodel.TMaterial{} where := map[string]interface{}{ "id": req.Id, } err = p.Delete(database.DB(), where) if err != nil { return nil, errors.DataBaseError } return reply, nil }