leomon
6 days ago 6017102b1d6affc7255e9f2df6f9e45e0b1a75fb
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);
 
}