tj
2025-04-17 add52b2fce633d62fb6cf829cc9ee58cb3727257
1
2
3
4
5
6
7
8
9
10
11
package com.mzl.flower.service.customer;
 
import com.mzl.flower.domain.CategoryConfig;
import com.mzl.flower.domain.CategoryConfigSync;
 
import java.util.List;
 
public interface CategoryConfigService {
    void saveOrUpdateCategoryConfig(CategoryConfigSync categoryConfigSync);
    List<CategoryConfig> getCategoryConfigsByUserId(String userId);
}