QyzxEntInfoMMapper.java 701 Bytes
Newer Older
yuquan.zhu committed
1
package cn.timer.api.dao.qyzx;
翁国栋 committed
2 3 4
import cn.timer.api.dto.qyzx.EntInfoDto;
import cn.timer.api.utils.Page;
import org.apache.ibatis.annotations.Param;
yuquan.zhu committed
5 6 7 8 9 10
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.qyzx.QyzxEntInfoM;

翁国栋 committed
11 12
import java.util.List;
import java.util.Map;
东州 翁 committed
13 14


yuquan.zhu committed
15 16 17 18 19 20
/**
*  企业信息
* @author Tang 2019-11-11
*/
@Repository
public interface QyzxEntInfoMMapper extends BaseMapper<QyzxEntInfoM> {
翁国栋 committed
21
    public List<EntInfoDto> companyAdminList(@Param("param")EntInfoDto entInfoDto);
翁国栋 committed
22

翁国栋 committed
23
    public Integer companyAdminCount(@Param("param")EntInfoDto entInfoDto);
翁国栋 committed
24 25

    public List<Map<String,String>> getCompanyList();
yuquan.zhu committed
26 27 28 29



}