From 4cf99e9f99a5e5e1b6a8633e419693cbdfc607d8 Mon Sep 17 00:00:00 2001 From: "liang.chao" <1360241448@qq.com> Date: Fri, 26 Jul 2024 17:45:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/bonus/sgzb/base/domain/MaSupplierInfo.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/base/domain/MaSupplierInfo.java b/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/base/domain/MaSupplierInfo.java index 70383bf2..9ebec729 100644 --- a/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/base/domain/MaSupplierInfo.java +++ b/sgzb-modules/sgzb-base/src/main/java/com/bonus/sgzb/base/domain/MaSupplierInfo.java @@ -1,5 +1,6 @@ package com.bonus.sgzb.base.domain; +import com.bonus.sgzb.common.core.annotation.Excel; import com.bonus.sgzb.common.core.web.domain.BaseEntity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -23,30 +24,37 @@ public class MaSupplierInfo extends BaseEntity /** 名称 */ @ApiModelProperty(value = "名称") + @Excel(name = "供应商名称") private String supplier; /** 地址 */ @ApiModelProperty(value = "地址") + @Excel(name = "供应商地址") private String address; /** 法人代表 */ @ApiModelProperty(value = "法人代表") + @Excel(name = "法人代表") private String legalPerson; /** 主要联系人 */ @ApiModelProperty(value = "主要联系人") + @Excel(name = "主要联系人") private String primaryContact; /** 联系方式 */ @ApiModelProperty(value = "联系方式") + @Excel(name = "联系方式") private String phone; /** 经营范围 */ @ApiModelProperty(value = "经营范围") + @Excel(name = "经营范围") private String businessScope; /** 营业执照 */ @ApiModelProperty(value = "营业执照") + @Excel(name = "营业执照") private String businessLicense; /** 删除标志(0代表存在 2代表删除) */