MsgPersonalMapper.java 402 B

1234567891011121314151617
  1. package com.kxs.adminap.dao.main;
  2. import com.kxs.adminap.model.main.MsgPersonal;
  3. import com.kxs.adminap.model.main.MsgPersonal;
  4. import java.util.List;
  5. public interface MsgPersonalMapper {
  6. int deleteByPrimaryKey(Integer id);
  7. int insert(MsgPersonal record);
  8. MsgPersonal selectByPrimaryKey(Integer id);
  9. List<MsgPersonal> selectAll();
  10. int updateByPrimaryKey(MsgPersonal record);
  11. }