1234567891011121314151617 |
- package com.rongwei.bscommon.system.service;
- import com.rongwei.rwcommon.base.R;
- import java.util.List;
- /**
- * PointService class
- *
- * @author XH
- * @date 2025/09/04
- */
- public interface PointService {
- R userPointExchange(String id);
- R userPointInitialization();
- }
|