feat(oa): 产品增加附件属性

- 在 GearProduct、GearProductBo 和 GearProductVo 类中添加 accessory 字段
- 在 GearProductMapper.xml 中添加 accessory 列的映射
This commit is contained in:
2025-09-03 11:49:53 +08:00
parent 9bfea86676
commit 623fa846a4
4 changed files with 8 additions and 2 deletions

View File

@@ -67,5 +67,7 @@ public class GearProduct extends BaseEntity {
//分类id
private Long categoryId;
//附件
private String accessory;
}

View File

@@ -70,6 +70,7 @@ public class GearProductBo extends BaseEntity {
* 分类ID
*/
private Long categoryId;
//附件
private String accessory;
}

View File

@@ -81,5 +81,6 @@ public class GearProductVo {
*/
@ExcelProperty(value = "分类ID")
private Long categoryId;
//附件
private String accessory;
}