parent
f7c4962e25
commit
a9f81e3b79
|
|
@ -24,7 +24,7 @@ public class DirectivePackageDto implements Serializable {
|
||||||
/**服务指令包名称*/
|
/**服务指令包名称*/
|
||||||
private String packageName;
|
private String packageName;
|
||||||
/**服务指令包总时长*/
|
/**服务指令包总时长*/
|
||||||
private Long duration;
|
private Long serviceDuration;
|
||||||
/**备注*/
|
/**备注*/
|
||||||
private String description;
|
private String description;
|
||||||
/**排序*/
|
/**排序*/
|
||||||
|
|
|
||||||
|
|
@ -174,4 +174,6 @@ public class NuBizNuCustomerServer implements Serializable {
|
||||||
/**服务包中的服务列表**/
|
/**服务包中的服务列表**/
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private List<NuBizNuCustomerServer> directivesList;
|
private List<NuBizNuCustomerServer> directivesList;
|
||||||
|
/**服务指令时长*/
|
||||||
|
private String serviceDuration;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
<select id="getNcPackagelist" resultType="com.nu.modules.NuBizNuCustomerServer.entity.DirectivePackageDto">
|
<select id="getNcPackagelist" resultType="com.nu.modules.NuBizNuCustomerServer.entity.DirectivePackageDto">
|
||||||
select id,
|
select id,
|
||||||
package_name as packageName,
|
package_name as packageName,
|
||||||
total_duration as duration,
|
total_duration as serviceDuration,
|
||||||
description
|
description
|
||||||
from nu_directive_package
|
from nu_directive_package
|
||||||
where del_flag = '0'
|
where del_flag = '0'
|
||||||
|
|
@ -35,4 +35,4 @@
|
||||||
</if>
|
</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue