package com.ltkj.hosp.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ltkj.hosp.domain.LisJyflhb;
|
import com.ltkj.hosp.service.LisJyflhbService;
|
import com.ltkj.hosp.mapper.LisJyflhbMapper;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author w
|
* @description 针对表【lis_jyflhb】的数据库操作Service实现
|
* @createDate 2024-10-18 15:13:39
|
*/
|
@Service
|
public class LisJyflhbServiceImpl extends ServiceImpl<LisJyflhbMapper, LisJyflhb>
|
implements LisJyflhbService{
|
|
}
|