| | |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface AiMemberPointService extends IService<AiMemberPoint> { |
| | | |
| | | AiMemberPoint getById(String id); |
| | | |
| | | AiMemberPoint add(String memberUuid, String productPointId, String companyId, Integer totalTime); |
| | | |
| | | |
| | | |
| | | FebsResponse saveTime(ApiMemberPointDto dto); |
| | | |
| | | List<AiMemberPoint> getListByCompanyId(String companyId); |
| | | |
| | | List<AiMemberPoint> getListByCompanyIdAndMemberUuid(String companyId, String memberUuid); |
| | | } |