zjh
2025-06-05 2c19fa65dc87ea8f3d81f84154f4eeabff7f8d00
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
27
28
29
30
31
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.TjAskHistorys;
import com.ltkj.hosp.domain.TjSurveyRecordDetail;
import com.ltkj.hosp.mapper.TjAskHistorysMapper;
import com.ltkj.hosp.mapper.TjAskMedicalHistoryMapper;
import com.ltkj.hosp.mapper.TjSurveyRecordDetailMapper;
import com.ltkj.hosp.service.ITjAskHistorysService;
import com.ltkj.hosp.service.TjSurveyRecordDetailService;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.RequestParam;
 
import javax.annotation.Resource;
import java.util.List;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: lige
 * @Date: 2023/4/11 17:51
 */
@Service
public class ITjAskHistorysServiceImpl extends ServiceImpl<TjAskHistorysMapper, TjAskHistorys> implements ITjAskHistorysService {
    @Resource
    private TjAskHistorysMapper mapper;
 
    @Override
    public String getZhengZhuangStr(List<String> ids) {
        return mapper.getZhengZhuangStr(ids);
    }
}