File was renamed from zq-erp/src/main/java/com/matrix/system/hive/dao/SysFollowupDao.java |
| | |
| | | package com.matrix.system.hive.dao; |
| | | package com.matrix.beauty.followup.dao; |
| | | |
| | | import com.matrix.beauty.followup.entry.SysFollowup; |
| | | import com.matrix.core.pojo.PaginationVO; |
| | | import com.matrix.system.app.dto.FollowupListDto; |
| | | import com.matrix.system.hive.dto.FollowuListDto; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import com.matrix.core.pojo.PaginationVO; |
| | | import com.matrix.system.hive.bean.SysFollowup; |
| | | |
| | | /** |
| | | * @description 跟进 |
| | |
| | | public interface SysFollowupDao{ |
| | | |
| | | public int insert(@Param("item") SysFollowup sysFollowup); |
| | | |
| | | |
| | | public int batchInsert(@Param("list") List<SysFollowup> sysFollowupList); |
| | | |
| | | public int updateByMap(Map<String, Object> modifyMap); |
| | |
| | | void updateZan(@Param("id")Long id, @Param("zans")String zans); |
| | | |
| | | List<SysFollowup> selectByAppDto(FollowupListDto followupListDto); |
| | | |
| | | List<SysFollowup> findVipFollowuByPage(FollowuListDto followuListDto); |
| | | } |