zepengdev
2025-07-19 f6239d1029da4c51ba3b2cec790f7399a210a3df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.oying.modules.pc.store.service;
 
import com.oying.modules.pc.store.domain.Store;
import com.oying.modules.pc.store.domain.dto.StoreCreateRequest;
import com.oying.modules.pc.store.domain.dto.StoreUpdateRequest;
import com.oying.modules.pc.store.events.StoreAuditVerdictEvent;
 
public interface StoreMerchantService {
 
    Store createStore(StoreCreateRequest request);
    void updateStore(StoreUpdateRequest request);
    void updateBusinessStatus(Store resources);
    void submitStoreAudit(Long storeId);
    void handleStoreAudit(StoreAuditVerdictEvent event);
 
}