类 WxUserController
java.lang.Object
net.guerlab.smart.wx.internal.controller.inside.WxUserController
@RestController("/inside/wxUser")
@RequestMapping("/inside/wxUser")
public class WxUserController
extends java.lang.Object
微信用户
- 作者:
- guer
-
构造器概要
构造器 构造器 说明 WxUserController() -
方法概要
修饰符和类型 方法 说明 java.util.Collection<net.guerlab.smart.wx.core.domain.WxUserDTO>findAll(net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams)intfindCount(net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams)net.guerlab.web.result.ListObject<net.guerlab.smart.wx.core.domain.WxUserDTO>findList(net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams)java.util.Map<java.lang.String,net.guerlab.smart.wx.core.domain.WxUserDTO>findMap(java.util.Collection<java.lang.String> openIds)net.guerlab.smart.wx.core.domain.WxUserDTOfindOne(java.lang.String appId, java.lang.String openId)voidsetService(net.guerlab.smart.wx.service.service.WxUserService service)
-
构造器详细资料
-
WxUserController
public WxUserController()
-
-
方法详细资料
-
findOne
@GetMapping("/{appId}/{openId}") public net.guerlab.smart.wx.core.domain.WxUserDTO findOne(@PathVariable java.lang.String appId, @PathVariable java.lang.String openId) -
findList
@PostMapping public net.guerlab.web.result.ListObject<net.guerlab.smart.wx.core.domain.WxUserDTO> findList(@RequestBody net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams) -
findAll
@PostMapping("/all") public java.util.Collection<net.guerlab.smart.wx.core.domain.WxUserDTO> findAll(@RequestBody net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams) -
findMap
@PostMapping("/findMap") public java.util.Map<java.lang.String,net.guerlab.smart.wx.core.domain.WxUserDTO> findMap(@RequestBody java.util.Collection<java.lang.String> openIds) -
findCount
@PostMapping("/count") public int findCount(net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams) -
setService
@Autowired public void setService(net.guerlab.smart.wx.service.service.WxUserService service)
-