CrmClientDataMapper.java 1 KB
Newer Older
邓实川 committed
1 2 3 4 5 6 7 8 9
/**  
* <p>Title: CrmClientDataMapper.java</p>  
* <p>Description: </p>  
* @author dsc  
* @date 2020年6月5日  
* @version 1.0  
*/
package cn.timer.api.dao.crm;

10 11 12 13
import java.util.List;

import org.springframework.web.bind.annotation.RequestParam;

邓实川 committed
14 15 16
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.crm.CrmClientData;
17
import cn.timer.api.dto.crm.CrmCartogramDto;
邓实川 committed
18 19

/**
20
 * Title: CrmClientDataMapper.java Description:
邓实川 committed
21 22 23 24 25 26 27
 * 
 * @author dsc
 * @date 2020年6月5日
 * @version 1.0
 */
public interface CrmClientDataMapper extends BaseMapper<CrmClientData> {

28 29 30 31 32
	List<CrmCartogramDto> crmCartogram(@RequestParam("orgCode") Integer orgCode,
			@RequestParam(name = "belongUser", required = false) Integer belongUser,
			@RequestParam(name = "belongGroup", required = false) Integer belongGroup,
			@RequestParam(name = "startCreateTime", required = false) String startCreateTime,
			@RequestParam(name = "endCreateTime", required = false) String endCreateTime);
邓实川 committed
33
}