feat(oa): 添加交付订单状态和附件字段
- 在 OaDeliveryOrder 实体类中新增 status 和 accessory 字段 - 在 OaDeliveryOrderBo 业务对象中新增 status 和 accessory 字段 - 在 OaDeliveryOrderMapper.xml 中配置 status 和 accessory 的映射关系 - 在 OaDeliveryOrderVo 视图对象中新增 status 和 accessory 字段 - 更新数据库查询结果映射以包含新的字段信息
This commit is contained in:
@@ -101,4 +101,8 @@ public class OaDeliveryOrder extends BaseEntity {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
|
||||
//状态和附件
|
||||
private Integer status;
|
||||
private String accessory;
|
||||
}
|
||||
|
||||
@@ -124,4 +124,9 @@ public class OaDeliveryOrderBo extends BaseEntity {
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date endTime;
|
||||
|
||||
|
||||
//状态和附件
|
||||
private Integer status;
|
||||
private String accessory;
|
||||
|
||||
}
|
||||
|
||||
@@ -136,4 +136,9 @@ public class OaDeliveryOrderVo {
|
||||
private String projectNum;
|
||||
|
||||
|
||||
//状态和附件
|
||||
private Integer status;
|
||||
private String accessory;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -22,6 +22,8 @@
|
||||
<result property="actualReceiver" column="actual_receiver"/>
|
||||
<result property="constructionCompany" column="construction_company"/>
|
||||
<result property="deliveryRemark" column="delivery_remark"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="accessory" column="accessory"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
@@ -48,6 +50,8 @@
|
||||
odo.actual_receiver AS actualReceiver,
|
||||
odo.construction_company AS constructionCompany,
|
||||
odo.delivery_remark AS deliveryRemark,
|
||||
odo.status AS status,
|
||||
odo.accessory AS accessory,
|
||||
p.project_name AS projectName,
|
||||
p.project_code AS projectCode,
|
||||
p.project_num AS projectNum
|
||||
|
||||
Reference in New Issue
Block a user