1234567891011121314151617 |
- package com.kxs.adminap.dao.main;
- import com.kxs.adminap.model.main.MsgPersonal;
- import com.kxs.adminap.model.main.MsgPersonal;
- import java.util.List;
- public interface MsgPersonalMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(MsgPersonal record);
- MsgPersonal selectByPrimaryKey(Integer id);
- List<MsgPersonal> selectAll();
- int updateByPrimaryKey(MsgPersonal record);
- }
|