| 1234567891011121314151617181920 |
- package com.goafanti.user.service;
- import com.goafanti.common.model.UserCareer;
- import com.goafanti.core.mybatis.page.Pagination;
- public interface UserCareerService {
- UserCareer selectUserCareerByUserId(String userId);
- UserCareer insert(UserCareer userCareer);
- int updateByPrimaryKeySelective(UserCareer userCareer);
-
-
- }
|