|
|
@ -7,11 +7,7 @@ import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
import com.ruoyi.system.domain.TdPropertyInfo;
|
|
|
|
import com.ruoyi.system.domain.TdPropertyInfo;
|
|
|
@ -47,9 +43,9 @@ public class TdPropertyInfoController extends BaseController
|
|
|
|
* 查询资产管理列表
|
|
|
|
* 查询资产管理列表
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:property:list")
|
|
|
|
@RequiresPermissions("system:property:list")
|
|
|
|
@GetMapping("/list/{useId}")
|
|
|
|
@PostMapping("/list")
|
|
|
|
//@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|
public TableDataInfo list(@PathVariable("useId") String useId, TdPropertyInfo tdPropertyInfo)
|
|
|
|
public TableDataInfo list(@RequestParam String useId)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
startPage();
|
|
|
|
startPage();
|
|
|
|
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);
|
|
|
|
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);
|
|
|
|