fix:字段补充

This commit is contained in:
wangff
2025-11-24 13:42:05 +08:00
parent e5c59b3839
commit be84221cf0

View File

@@ -37,11 +37,26 @@ public class BillDetailDTO {
*/ */
private Integer feeItemId; private Integer feeItemId;
/**
* 费用科目名称
*/
private String feeItemName;
/** /**
* 门店账户编号 * 门店账户编号
*/ */
private String storeAccountNo; private String storeAccountNo;
/**
* 交易对方账户编号
*/
private String transAccountNo;
/**
* 交易对方账户名称
*/
private String transAccountName;
/** /**
* 公司编号 * 公司编号
*/ */
@@ -77,4 +92,9 @@ public class BillDetailDTO {
*/ */
private Integer tradeType; private Integer tradeType;
/**
* 交易发起时间
*/
private String createTime;
} }