p-honggang.li
2025-08-20 fefed50bf97060a82aabd09e090fa08ce532532f
1
2
3
4
5
6
7
8
9
package com.webmanage.service;
 
import com.webmanage.vo.CartItemVO;
 
public interface CartPersistenceService {
    void saveOrUpdate(Long userId, Long unitId, CartItemVO item);
    void remove(Long userId, Long unitId, Long pricingId);
    void clear(Long userId, Long unitId);
}