作者 tangxvhui

修复 判定逻辑错误

... ... @@ -29,7 +29,7 @@ func NewSystemEditAticleCommentLoveLogic(ctx context.Context, svcCtx *svc.Servic
func (l *SystemEditAticleCommentLoveLogic) SystemEditAticleCommentLove(req *types.SystemEditCommentLoveRequest) (resp *types.SystemEditCommentLoveResponse, err error) {
var conn = l.svcCtx.DefaultDBConn()
if len(req.ParamList) > 0 {
if len(req.ParamList) <= 0 {
return &types.SystemEditCommentLoveResponse{}, nil
}
paramMap := map[int64]int{}
... ...