Commit b32eb545 by 徐高华

朋友圈

parent 51c24164
......@@ -51,6 +51,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
......@@ -324,6 +325,9 @@ public class QwMomentController {
vo.setClerkVOList(list);
}
}
if(null != detaiResp.getResult().getExecRate()) {
vo.setExecRateFloat(BigDecimal.valueOf(detaiResp.getResult().getExecRate()).divide(BigDecimal.valueOf(100),2).doubleValue());
}
return RestResponse.successResult(vo);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment