新增 运营商表新增营业执照url字段

This commit is contained in:
Lemon
2025-06-04 14:25:04 +08:00
parent f5e6e29f00
commit 3399a2480c
2 changed files with 55 additions and 3 deletions

View File

@@ -87,6 +87,11 @@ public class PileMerchantInfo extends BaseEntity {
@Excel(name = "logo")
private String logoUrl;
/**
* 营业执照url
*/
private String businessLicenseUrl;
/**
* 运营商的小程序appId
*/
@@ -129,6 +134,7 @@ public class PileMerchantInfo extends BaseEntity {
.append("managerPhone", getManagerPhone())
.append("servicePhone", getServicePhone())
.append("logoUrl", getLogoUrl())
.append("businessLicenseUrl", getBusinessLicenseUrl())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())