package com.gkhy.hazmat.common.listener; import lombok.Getter; import lombok.Setter; import org.springframework.context.ApplicationEvent; /** * 危化品入库事件 */ @Getter @Setter public class EntryEvent extends ApplicationEvent { //入库记录Id private Long entryRecordId; //条码前缀 private String codePrex; //操作用户公司id private Long companyId; //操作用户id private Long userId; public EntryEvent(Object source, Long entryRecordId,String codePrex,Long companyId,Long userId) { super(source); this.entryRecordId=entryRecordId; this.codePrex=codePrex; this.companyId=companyId; this.userId=userId; } }