feat(gear-requirements): 添加图片展示字段
在 GearRequirements、GearRequirementsBo、GearRequirementsVo以及对应的 Mapper XML 文件中增加 image 字段,用于支持图片展示功能。
This commit is contained in:
@@ -68,5 +68,6 @@ public class GearRequirements extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
@TableLogic
|
@TableLogic
|
||||||
private Integer delFlag;
|
private Integer delFlag;
|
||||||
|
// 图片展示
|
||||||
|
private String image;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,5 +67,6 @@ public class GearRequirementsBo extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String accessory;
|
private String accessory;
|
||||||
|
|
||||||
|
// 图片展示
|
||||||
|
private String image;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -89,5 +89,6 @@ public class GearRequirementsVo {
|
|||||||
@ExcelProperty(value = "订单编号")
|
@ExcelProperty(value = "订单编号")
|
||||||
private String orderCode;
|
private String orderCode;
|
||||||
|
|
||||||
|
// 图片展示
|
||||||
|
private String image;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="description" column="description"/>
|
<result property="description" column="description"/>
|
||||||
<result property="deadline" column="deadline"/>
|
<result property="deadline" column="deadline"/>
|
||||||
<result property="status" column="status"/>
|
<result property="status" column="status"/>
|
||||||
|
<result property="image" column="image"/>
|
||||||
<result property="remark" column="remark"/>
|
<result property="remark" column="remark"/>
|
||||||
<result property="accessory" column="accessory"/>
|
<result property="accessory" column="accessory"/>
|
||||||
<result property="createBy" column="create_by"/>
|
<result property="createBy" column="create_by"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user