Commit 68e83c2b by ddx

update taxno line function

parent 9a2c4297
......@@ -373,9 +373,12 @@ public class JxSampleController {
try {
Stopwatch stopwatch = Stopwatch.createStarted();
AnalysisCriteria analysisCriteria = new AnalysisCriteria();
analysisCriteria.setUsername(username);
String usernamePlain = this.getUserPlain(username);
analysisCriteria.setUsername(usernamePlain);
analysisCriteria.setStartDateTime(startDate);
analysisCriteria.setEndDateTime(endDate);
log.info("get income seller growth request:{}", JSONUtil.toString(analysisCriteria));
String response = sellerGrowthCommand.handle(analysisCriteria);
log.info("get income seller growth response:{}", response);
stopwatch.stop();
......
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