dashboard
repositories
filestore
activity
search
login
main
/
oyingServer
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
匿名访问正则表达式优化特殊字符
xin
2025-09-25
7e0b4c06b02e2212c10d4b1557c6ca5adf2e56df
[oyingServer.git]
/
oying-system
/
src
/
main
/
java
/
com
/
oying
/
modules
/
pc
/
product
/
events
/
ProductAuditVerdictEvent.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.oying.modules.pc.product.events;
import lombok.Data;
@Data
public class ProductAuditVerdictEvent {
private Long auditId;
public ProductAuditVerdictEvent(Long auditId) {
this.auditId = auditId;
}
}