Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in

李苗 / Vion-DevOps

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Vion-DevOps
  • src
  • main
  • java
  • vion
  • event
  • WxDTOEvent.java
  • HlQ's avatar
    [add] · 12a21868 ...
    1.添加点位设计功能
    2.添加请求日志功能
    3.微信 openid 绑定使用 Spring Event
    4.添加机器人推送功能
    5.发货管理添加批量导入功能
    HlQ committed Jan 17, 2024
    12a21868 Browse Files
WxDTOEvent.java 361 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package vion.event;

import lombok.Getter;
import org.springframework.context.ApplicationEvent;
import vion.dto.WxDTO;

/**
 * @author HlQ
 * @date 2024/1/16
 */
@Getter
public class WxDTOEvent extends ApplicationEvent {

    private final WxDTO wxDTO;

    public WxDTOEvent(Object source, WxDTO dto) {
        super(source);
        this.wxDTO = dto;
    }
}