feat(supplier): 增加供应商类型字段支持
- 在 SupplierManage 实体中新增 supplierType 字段及相关注解
- 在 SupplierManageExcelDto 中添加 supplierType 字段及 Excel 注解
- 修改 SupplierManageMapper.xml,查询结果包含 supplier_type 字段
- 调整 SupplierManage 中 supplierType 字段位置,移除重复定义
| | |
| | | @Excel(name = "供应商名称") |
| | | private String supplierName; |
| | | |
| | | @Excel(name = "供应商类型") |
| | | private String supplierType; |
| | | |
| | | @Excel(name = "纳税人识别号") |
| | | private String taxpayerIdentificationNum; |
| | | |
| | |
| | | @Excel(name = "供应商名称") |
| | | private String supplierName; |
| | | |
| | | @ApiModelProperty(value = "供应商类型") |
| | | @TableField(value = "supplier_type") |
| | | @Excel(name = "供应商名称") |
| | | private String supplierType; |
| | | |
| | | @ApiModelProperty(value = "纳税人识别号") |
| | | @Excel(name = "纳税人识别号") |
| | | private String taxpayerIdentificationNum; |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | @ApiModelProperty(value = "供应商类型") |
| | | @TableField(value = "supplier_type") |
| | | private String supplierType; |
| | | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | |
| | | T1.update_user, |
| | | T1.tenant_id, |
| | | T1.is_white, |
| | | T2.nick_name AS maintainUserName |
| | | T2.nick_name AS maintainUserName, |
| | | T1.supplier_type |
| | | FROM supplier_manage T1 |
| | | LEFT JOIN sys_user T2 ON T1.maintain_user_id = T2.user_id |
| | | <where> |