TriggerService.java 407 B

1234567891011121314151617181920
  1. /**
  2. * @projectName willalp-pns-ml
  3. * @package com.willalp.flow.service
  4. * @className com.willalp.flow.service.TriggerService
  5. * @copyright Copyright 2019 HuiShan, Inc All rights reserved.
  6. */
  7. package com.willalp.flow.service;
  8. /**
  9. * TriggerService
  10. * @description 流程触发器
  11. * @author hs
  12. * @date 2023/4/11 16:40
  13. * @version 1.0
  14. */
  15. public interface TriggerService {
  16. void doTest(int count);
  17. }