dashboard
repositories
filestore
activity
search
login
main
/
oyingServer
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
骑手订单新增用户手机号字段
彭雪彬
2025-07-22
a56a9afaa634a26c9f02acca1bf35eff7b2f2e33
[oyingServer.git]
/
oying-system
/
src
/
main
/
java
/
com
/
oying
/
modules
/
pc
/
store
/
events
/
StoreAuditVerdictEvent.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.oying.modules.pc.store.events;
import lombok.Data;
@Data
public class StoreAuditVerdictEvent {
private Long auditId;
public StoreAuditVerdictEvent(Long auditId) {
this.auditId = auditId;
}
}