加 a+b Adds two nullable numbers with precise decimal arithmetic
static Decimal add(num? a, num? b) { return _safeParseNum(a) + _safeParseNum(b); }