类 PayLogNotifyController
- java.lang.Object
-
- net.guerlab.smart.pay.internal.controller.inside.PayLogNotifyController
-
@RestController("/inside/payLogNotify") @RequestMapping("/inside/payLogNotify") public class PayLogNotifyController extends Object支付记录通知服务- 作者:
- guer
-
-
构造器概要
构造器 构造器 说明 PayLogNotifyController()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Collection<net.guerlab.smart.pay.core.domain.PayLogNotifyDTO>findAll(net.guerlab.smart.pay.core.searchparams.PayLogNotifySearchParams searchParams)net.guerlab.web.result.ListObject<net.guerlab.smart.pay.core.domain.PayLogNotifyDTO>findList(net.guerlab.smart.pay.core.searchparams.PayLogNotifySearchParams searchParams)net.guerlab.smart.pay.core.domain.PayLogNotifyDTOfindOne(Long id)voidsetService(PayLogNotifyService service)
-
-
-
方法详细资料
-
findOne
@GetMapping("/{id}") public net.guerlab.smart.pay.core.domain.PayLogNotifyDTO findOne(@PathVariable Long id)
-
findList
@PostMapping public net.guerlab.web.result.ListObject<net.guerlab.smart.pay.core.domain.PayLogNotifyDTO> findList(@RequestBody net.guerlab.smart.pay.core.searchparams.PayLogNotifySearchParams searchParams)
-
findAll
@PostMapping("/all") public Collection<net.guerlab.smart.pay.core.domain.PayLogNotifyDTO> findAll(@RequestBody net.guerlab.smart.pay.core.searchparams.PayLogNotifySearchParams searchParams)
-
setService
@Autowired public void setService(PayLogNotifyService service)
-
-