Commit d32a44a4 by shj

预算分布实时总览:预算明细页面添加侧边栏,实时显示所有费用的实际情况

parent 7d51910a
......@@ -164,6 +164,7 @@ public class BudgetService implements IBudgetService {
Map<TestAndProcess,Integer> result=new HashMap<>();
TestAndProcess testAndProcess = new TestAndProcess();
testAndProcess.setPrice(number);
testAndProcess.setName("测试化验加工费");
result.put(testAndProcess,1);
return result;
}
......@@ -179,6 +180,7 @@ public class BudgetService implements IBudgetService {
Map<Power,Integer> result=new HashMap<>();
Power power = new Power();
power.setPrice(number);
power.setName("燃料动力费");
result.put(power,1);
return result;
}
......
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