数据报表

This commit is contained in:
2024-04-08 11:33:44 +08:00
parent 05e1acaef2
commit 8cbe957833
5 changed files with 202 additions and 67 deletions

View File

@@ -1,7 +1,7 @@
package cn.ysk.cashier.vo;
public class TbOrderPayCountVo{
public class TbOrderPayCountVo {
private String icon;
private String payType;
private Object payAmount;
@@ -32,6 +32,9 @@ public class TbOrderPayCountVo{
public TbOrderPayCountVo(String payType, Object payAmount) {
this.payType = payType;
this.payAmount=payAmount;
this.payAmount = payAmount;
if (payAmount == null) {
this.payAmount = 0;
}
}
}