两个数相加(防止精度丢失)
static Decimal addDecString(String a, String b) { return Decimal.parse(a) + Decimal.parse(b); }