| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.project.common.annotation.Excel; |
| | | import com.project.common.annotation.Sensitive; |
| | | import com.project.common.core.domain.model.ImportError; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | private Long companyId; |
| | | |
| | | @Excel(name = "企业名(企业全称)") |
| | | @Sensitive(type = Sensitive.SensitiveType.DEFAULT) |
| | | @ApiModelProperty("企业名(企业全称)") |
| | | private String companyName; |
| | | |
| | | @Excel(name = "统一社会信用代码") |
| | | @ApiModelProperty("统一社会信用代码") |
| | | @Sensitive(type = Sensitive.SensitiveType.DEFAULT) |
| | | private String companyCode; |
| | | |
| | | @Excel(name = "企业联系人") |
| | | @ApiModelProperty("企业联系人") |
| | | @Sensitive(type = Sensitive.SensitiveType.DEFAULT) |
| | | private String companyUser; |
| | | |
| | | @Excel(name = "联系人电话" ) |
| | | @ApiModelProperty("联系人电话") |
| | | @Sensitive(type = Sensitive.SensitiveType.PHONE) |
| | | private String companyPhone; |
| | | |
| | | @Excel(name = "企业地址") |