zjh
2025-06-20 ac544c1d85c53e7f51e4ea76aa2489a14aef03d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.TjProjectXgjl;
import com.ltkj.hosp.mapper.TjProjectXgjlMapper;
import com.ltkj.hosp.service.TjProjectXgjlService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
@Service
public class TjProjectXgjlServiceImpl extends ServiceImpl<TjProjectXgjlMapper, TjProjectXgjl> implements TjProjectXgjlService {
 
    @Autowired
    private  TjProjectXgjlMapper mapperl;
 
    @Override
    public boolean saveTjptojectXgjl(Long proId,String nickName) {
        return false;
    }
}