PromptLetterMapper.java 796 B

1234567891011121314151617
  1. package com.fuzamei.mapperInterface;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.fuzamei.entity.PromptLetter;
  5. public interface PromptLetterMapper {
  6. public List<PromptLetter> queryPromptLetterByAdmin(Map<String, Object> map);//查询风险提示函 接收人列表
  7. public void insertIntoPromptLetterTable(Map<String, Object> map);//提示函插入数据信息
  8. public void insertIntoAttachmentTable(Map<String, Object> map);//提示函数据在往附件表也插入
  9. public void insertOperationHistory(Map<String, Object> map);//提示函也往操作记录表李插入
  10. public int findAllInformation(Map<String, Object> map);//根据条件查询所有符合的信息条数
  11. public List<PromptLetter> queryPromptLetterByVenture(Map<String, Object> map);
  12. }