1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.dy.pipIrrRemote.monitor.p202404V201.cd15;
 
import com.dy.pipIrrGlobal.daoPr.PrControllerMapper;
import com.dy.pipIrrGlobal.daoSe.SeClientCardMapper;
import com.dy.pipIrrGlobal.pojoSe.SeClientCard;
import com.dy.pipIrrRemote.monitor.common.ComSv;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * @Author: liurunyu
 * @Date: 2025/5/9 14:42
 * @Description
 */
@Slf4j
@Service("cd15Sv")
public class CdSv extends ComSv {
 
    @Autowired
    protected SeClientCardMapper seClientCardDao ;
 
    public SeClientCard selectClientIcCardById(Long id){
        return seClientCardDao.selectByPrimaryKey(id) ;
    }
}