feat(oa): 新增发货单明细状态和附件字段
- 在 OaDeliveryOrderDetail 实体类中新增 status 和 accessory 字段 - 在 OaDeliveryOrderDetailBo 业务对象中新增 status 和 accessory 字段 - 在 OaDeliveryOrderDetailVo 视图对象中新增 status 和 accessory 字段 - 更新 MyBatis Mapper XML 文件,映射新增的 status 和 accessory 字段 - 数据库查询结果集中包含新增的 status 和 accessory 字段
This commit is contained in:
@@ -94,4 +94,9 @@ public class OaDeliveryOrderDetail extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
|
||||||
|
//状态和附件
|
||||||
|
private Integer status;
|
||||||
|
private String accessory;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -111,5 +111,7 @@ public class OaDeliveryOrderDetailBo extends BaseEntity {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||||
private Date endTime;
|
private Date endTime;
|
||||||
|
|
||||||
|
//状态和附件
|
||||||
|
private Integer status;
|
||||||
|
private String accessory;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -131,5 +131,8 @@ public class OaDeliveryOrderDetailVo {
|
|||||||
@ExcelProperty(value = "备注")
|
@ExcelProperty(value = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
//状态和附件
|
||||||
|
private Integer status;
|
||||||
|
private String accessory;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,8 @@
|
|||||||
<result property="volume" column="volume"/>
|
<result property="volume" column="volume"/>
|
||||||
<result property="boxSize" column="box_size"/>
|
<result property="boxSize" column="box_size"/>
|
||||||
<result property="detailRemark" column="detail_remark"/>
|
<result property="detailRemark" column="detail_remark"/>
|
||||||
|
<result property="status" column="status"/>
|
||||||
|
<result property="accessory" column="accessory"/>
|
||||||
<result property="delFlag" column="del_flag"/>
|
<result property="delFlag" column="del_flag"/>
|
||||||
<result property="remark" column="remark"/>
|
<result property="remark" column="remark"/>
|
||||||
<result property="createBy" column="create_by"/>
|
<result property="createBy" column="create_by"/>
|
||||||
@@ -44,6 +46,8 @@
|
|||||||
volume,
|
volume,
|
||||||
box_size AS boxSize,
|
box_size AS boxSize,
|
||||||
detail_remark AS detailRemark,
|
detail_remark AS detailRemark,
|
||||||
|
status,
|
||||||
|
accessory,
|
||||||
del_flag AS delFlag,
|
del_flag AS delFlag,
|
||||||
remark,
|
remark,
|
||||||
create_by AS createBy,
|
create_by AS createBy,
|
||||||
|
|||||||
Reference in New Issue
Block a user