ProjectAndBoMapper.java 604 Bytes
Newer Older
nie'hong's avatar
nie'hong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package cn.wisenergy.oaMapper;

import cn.wisenergy.oaModel.OaProject;

import java.util.List;
import java.util.Map;

/**
 * @description: 项目和商机的mapper
 * @author: nh
 * @create: 2021-04-20 11:03
 **/
public interface ProjectAndBoMapper {

nie'hong's avatar
nie'hong committed
15
    List<OaProject> getListOaProjectByDept(Map<String, Object> map);
nie'hong's avatar
nie'hong committed
16

nie'hong's avatar
nie'hong committed
17
    List<OaProject> getListOaBoByDept(Map<String, Object> map);
nie'hong's avatar
nie'hong committed
18 19 20 21 22


    OaProject getProjectByNameAndNo(Map<String, Object> map);

    OaProject getBoByNameAndNo(Map<String, Object> map);
23 24 25 26

    OaProject getProjectByNo(String projectNo);

    OaProject getBoByNo(String businessId);
nie'hong's avatar
nie'hong committed
27
}