feat(JsReceipt): add reason field to receipt DTOs and entity for additional context

This commit is contained in:
2025-11-15 20:50:08 +08:00
parent 4562cf4cc1
commit 7cf67d4470
6 changed files with 25 additions and 0 deletions

View File

@@ -23,6 +23,10 @@ public class JsPurchaserDto extends OrgCommonDto {
@Comment("银行")
private String bank;
@DictTranslate(dictKey = DictCode.BANK)
private String bankName;
@Comment("开户行")
private String bankBranch;

View File

@@ -37,4 +37,8 @@ public class CreateJsReceiptDto extends OrgCommonDto {
@Comment("扩展数据")
private String extData;
@Comment("事由")
private String reason;
}

View File

@@ -50,4 +50,8 @@ public class JsReceiptDto extends OrgCommonDto {
@Comment("扩展数据")
private String extData;
@Comment("事由")
private String reason;
}

View File

@@ -48,4 +48,8 @@ public class JsReceiptSimpleDto extends OrgCommonDto {
@Comment("扩展数据")
private String extData;
@Comment("事由")
private String reason;
}

View File

@@ -39,4 +39,8 @@ public class UpdateJsReceiptDto extends OrgCommonDto {
@Comment("扩展数据")
private String extData;
@Comment("事由")
private String reason;
}

View File

@@ -69,4 +69,9 @@ public class JsReceiptEntity extends OrgCommonEntity {
@Comment("扩展数据")
private String extData;
@Comment("事由")
private String reason;
}