zhaowenxuan
2024-10-18 74eb4efe4e23adac4e7a0b7483425243ccb63a61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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{
 
}