类 WxUserController
- java.lang.Object
-
- net.guerlab.smart.platform.server.controller.AbstractControllerImpl<D,E,S,PK>
-
- net.guerlab.smart.platform.server.controller.BaseFindController<net.guerlab.smart.wx.core.domain.WxUserDTO,WxUser,WxUserService,net.guerlab.smart.wx.core.searchparams.WxUserSearchParams,String>
-
- net.guerlab.smart.wx.web.controller.user.WxUserController
-
- 所有已实现的接口:
net.guerlab.smart.platform.server.controller.FindController<net.guerlab.smart.wx.core.domain.WxUserDTO,WxUser,WxUserService,net.guerlab.smart.wx.core.searchparams.WxUserSearchParams,String>,net.guerlab.smart.platform.server.controller.IController<WxUser,WxUserService,String>
@RestController("/user/wxUser") @RequestMapping("/user/wxUser") public class WxUserController extends net.guerlab.smart.platform.server.controller.BaseFindController<net.guerlab.smart.wx.core.domain.WxUserDTO,WxUser,WxUserService,net.guerlab.smart.wx.core.searchparams.WxUserSearchParams,String>微信用户- 作者:
- guer
-
-
构造器概要
构造器 构造器 说明 WxUserController()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidbatchSetTags(SetTagRequestDTO request)voiddelete(String appId, String openId)List<net.guerlab.smart.wx.core.domain.WxUserDTO>findAll(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)net.guerlab.smart.wx.core.domain.WxUserDTOfindOne(String id)protected net.guerlab.commons.exception.ApplicationExceptionnullPointException()voidsetTagMappingService(UserTagMappingService tagMappingService)voidsetTags(String id, SetTagRequestDTO request)voidsetTagService(UserTagService tagService)-
从类继承的方法 net.guerlab.smart.platform.server.controller.AbstractControllerImpl
findOne0, getService, newEntity, setService
-
-
-
-
方法详细资料
-
nullPointException
protected net.guerlab.commons.exception.ApplicationException nullPointException()
- 覆盖:
nullPointException在类中net.guerlab.smart.platform.server.controller.AbstractControllerImpl<net.guerlab.smart.wx.core.domain.WxUserDTO,WxUser,WxUserService,String>
-
findOne
public net.guerlab.smart.wx.core.domain.WxUserDTO findOne(String id)
-
findList
public net.guerlab.web.result.ListObject<net.guerlab.smart.wx.core.domain.WxUserDTO> findList(net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams)
-
findAll
public List<net.guerlab.smart.wx.core.domain.WxUserDTO> findAll(net.guerlab.smart.wx.core.searchparams.WxUserSearchParams searchParams)
-
delete
@DeleteMapping("/{appId}/{openId}") public void delete(@PathVariable String appId, @PathVariable String openId)
-
setTags
@PostMapping("/{id}/setTags") @Transactional(rollbackFor=java.lang.Exception.class) public void setTags(@PathVariable String id, @RequestBody SetTagRequestDTO request)
-
batchSetTags
@PostMapping("/batchSetTags") public void batchSetTags(@RequestBody SetTagRequestDTO request)
-
setTagService
@Autowired public void setTagService(UserTagService tagService)
-
setTagMappingService
@Autowired public void setTagMappingService(UserTagMappingService tagMappingService)
-
-