服务指令计划获取指令包,服务时长字段调整
This commit is contained in:
parent
0bdabdf82e
commit
f7c4962e25
|
|
@ -24,7 +24,7 @@ public class DirectivePackageDto implements Serializable {
|
|||
/**服务指令包名称*/
|
||||
private String packageName;
|
||||
/**服务指令包总时长*/
|
||||
private Long totalDuration;
|
||||
private Long duration;
|
||||
/**备注*/
|
||||
private String description;
|
||||
/**排序*/
|
||||
|
|
@ -53,8 +53,6 @@ public class DirectivePackageDto implements Serializable {
|
|||
private String startTimeStr;
|
||||
// 结束时间
|
||||
private String endTimeStr;
|
||||
// 服务标签
|
||||
private String instructionTagId;
|
||||
// 服务指令集合
|
||||
private List<NuBizNuCustomerServer> directivesList;
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,13 @@
|
|||
|
||||
|
||||
<select id="getNcPackagelist" resultType="com.nu.modules.NuBizNuCustomerServer.entity.DirectivePackageDto">
|
||||
select * from nu_directive_package where del_flag = '0' and iz_enabled = '0'
|
||||
select id,
|
||||
package_name as packageName,
|
||||
total_duration as duration,
|
||||
description
|
||||
from nu_directive_package
|
||||
where del_flag = '0'
|
||||
and iz_enabled = '0'
|
||||
</select>
|
||||
|
||||
<select id="getNcDirectiveList" resultType="com.nu.modules.NuBizNuCustomerServer.entity.NuBizNuCustomerServer">
|
||||
|
|
|
|||
Loading…
Reference in New Issue