28 lines
602 B
Go
28 lines
602 B
Go
package freight
|
|
|
|
import (
|
|
"context"
|
|
|
|
pb "bsm/full/module/ec/mall/pb"
|
|
"git.apinb.com/bsm-sdk/core/errcode"
|
|
"git.apinb.com/bsm-sdk/core/service"
|
|
)
|
|
|
|
// Detail 运费模板详情
|
|
func Detail(ctx context.Context, in *pb.IdentRequest) (reply *pb.FreightItem, err error) {
|
|
// parse authorization meta.
|
|
_, err = service.ParseMetaCtx(ctx, &service.ParseOptions{RoleValue: "Mall_Admin"})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// valildate request id,identity.
|
|
if in.Id == 0 && in.Identity == "" {
|
|
return nil, errcode.ErrInvalidArgument
|
|
}
|
|
|
|
// TODO: add your logic code & delete this line.
|
|
|
|
return
|
|
}
|