feat(JsSupplier): add address field to supplier DTOs and entity for contact information

This commit is contained in:
2025-11-12 22:27:15 +08:00
parent 72eafb6942
commit 34cdcc4ec1
4 changed files with 12 additions and 0 deletions

View File

@@ -19,4 +19,7 @@ public class CreateJsSupplierDto extends OrgCommonDto {
private String bankCardNumber;
@Comment("手机号")
private String phoneNumber;
private String address;
}

View File

@@ -30,4 +30,7 @@ public class JsSupplierDto extends OrgCommonDto {
@Comment("手机号")
private String phoneNumber;
private String address;
}

View File

@@ -17,4 +17,7 @@ public class UpdateJsSupplierDto extends OrgCommonDto {
private String bankCardNumber;
private String phoneNumber;
private String address;
}

View File

@@ -39,4 +39,7 @@ public class JsSupplierEntity extends OrgCommonEntity {
@Comment("手机号")
private String phoneNumber;
private String address;
}