| 123456789101112131415161718192021222324 |
- package com.goafanti.common.dao;
- import java.util.List;
- import com.goafanti.common.model.LectureUser;
- import com.goafanti.common.model.LectureUserKey;
- public interface LectureUserMapper {
- int deleteByPrimaryKey(LectureUserKey key);
- int insert(LectureUser record);
- int insertSelective(LectureUser record);
- LectureUser selectByPrimaryKey(LectureUserKey key);
- int updateByPrimaryKeySelective(LectureUser record);
- int updateByPrimaryKey(LectureUser record);
- LectureUser selectByUid(String uid);
- int batchDeleteByPrimaryKey(List<String> id);
- }
|