| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "供应商名称") |
| | | @Excel(name = "供应商名称") |
| | | private String supplierName; |
| | | |
| | | @ApiModelProperty(value = "纳税人识别号") |
| | | @Excel(name = "纳税人识别号") |
| | | private String taxpayerIdentificationNum; |
| | | |
| | | @ApiModelProperty(value = "公司地址") |
| | | @Excel(name = "公司地址") |
| | | private String companyAddress; |
| | | |
| | | @ApiModelProperty(value = "公司电话") |
| | | @Excel(name = "公司电话") |
| | | private String companyPhone; |
| | | |
| | | @ApiModelProperty(value = "开户行") |
| | | @Excel(name = "开户行") |
| | | private String bankAccountName; |
| | | |
| | | @ApiModelProperty(value = "账号") |
| | | @Excel(name = "账号") |
| | | private String bankAccountNum; |
| | | |
| | | @ApiModelProperty(value = "联系人") |
| | | @Excel(name = "联系人") |
| | | private String contactUserName; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | @Excel(name = "联系电话") |
| | | private String contactUserPhone; |
| | | |
| | | @ApiModelProperty(value = "维护人ID") |
| | | @Excel(name = "维护人") |
| | | private Integer maintainUserId; |
| | | |
| | | @ApiModelProperty(value = "维护时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | // @Excel(name = "维护时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private LocalDate maintainTime; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | |
| | | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer tenantId; |
| | | private Long tenantId; |
| | | } |