You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
package com.dao;
|
|
|
|
import com.entity.YonghuEntity;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
import com.baomidou.mybatisplus.plugins.pagination.Pagination;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.entity.vo.YonghuVO;
|
|
import com.entity.view.YonghuView;
|
|
|
|
|
|
/**
|
|
* 用户
|
|
*
|
|
* @author
|
|
* @email
|
|
* @date 2023-05-01 12:14:49
|
|
*/
|
|
public interface YonghuDao extends BaseMapper<YonghuEntity> {
|
|
|
|
List<YonghuVO> selectListVO(@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
YonghuVO selectVO(@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
List<YonghuView> selectListView(@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
List<YonghuView> selectListView(Pagination page,@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
YonghuView selectView(@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
|
|
List<Map<String, Object>> selectValue(@Param("params") Map<String, Object> params,@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
List<Map<String, Object>> selectTimeStatValue(@Param("params") Map<String, Object> params,@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
List<Map<String, Object>> selectGroup(@Param("params") Map<String, Object> params,@Param("ew") Wrapper<YonghuEntity> wrapper);
|
|
|
|
|
|
|
|
}
|