加 a+b Adds two nullable strings representing numbers
static Decimal addStr(String? a, String? b) { return _safeParse(a) + _safeParse(b); }