Commit f926748d by 宋珺琪

智图人案关联添加修改(湖南)

parent d5de08db
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.founder.publicapi.mapper.mysqlMapper.RyMapper">
<select id="selectAjbhBySfz" resultType="java.lang.String">
select asjbh from tb_st_xftp_new where zjhm =#{zjhm}
</select>
</mapper>
\ No newline at end of file
package com.founder.publicapi.service.serviceimpl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.RyAndAjEntity.TbStJzyp;
import com.founder.publicapi.mapper.mysqlMapper.AjMapper;
import com.founder.publicapi.service.AjService;
import org.springframework.stereotype.Service;
@Service
public class AjServiceImpl extends ServiceImpl<AjMapper, TbStJzyp> implements AjService {
}
package com.founder.publicapi.service.serviceimpl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.RyAndAjEntity.TbStXftpNew;
import com.founder.publicapi.mapper.mysqlMapper.RyMapper;
import com.founder.publicapi.service.RyService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class RyServiceImpl extends ServiceImpl<RyMapper, TbStXftpNew> implements RyService {
@Autowired
RyMapper ryMapper;
@Override
public String selectAjbhBySfz(String zjhm) {
return ryMapper.selectAjbhBySfz(zjhm);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment