feat:资产登记bug修改

kingbase
wangxy 10 months ago
parent fc78243ddb
commit f442f28a6c

@ -45,10 +45,10 @@ public class TdPropertyInfoController extends BaseController
@RequiresPermissions("system:property:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(@RequestParam String useId)
public TableDataInfo list(TdPropertyInfo tdPropertyInfo)
{
startPage();
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
return getDataTable(tdPropertyInfos);
}

@ -10,13 +10,9 @@
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>资产编号:</label>
<input type="text" name="useId"/>
</li>
<li>
<label>登记编号:</label>
<input type="text" name="Id"/>
<input type="text" name="id"/>
</li>
<li>
<label>资产种类:</label>
@ -85,6 +81,7 @@
detailUrl: prefix + "/detail/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
queryParams: queryParams,
modalName: "资产管理",
columns: [{
checkbox: true
@ -141,6 +138,13 @@
};
$.table.init(options);
});
function queryParams(params) {
var search = $.table.queryParams(params);
search.useId = [[${useId}]];
return search;
}
</script>
</body>
</html>

@ -42,6 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectTdPropertyInfoList" parameterType="TdPropertyInfo" resultMap="TdPropertyInfoResult">
<include refid="selectTdPropertyInfoVo"/>
<where>
<if test="id != null and id != ''"> and id = #{id}</if>
<if test="useId != null and useId != ''"> and use_id = #{useId}</if>
<if test="propertyBrand != null and propertyBrand != ''"> and property_brand = #{propertyBrand}</if>
<if test="propertyMac != null and propertyMac != ''"> and property_mac = #{propertyMac}</if>

Loading…
Cancel
Save