zhaowenxuan
2025-05-19 f2162e182405184e14bfa8d628150ccc49318fc3
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.TjFlowingWaterHis;
import com.ltkj.hosp.service.TjFlowingWaterHisService;
import com.ltkj.hosp.mapper.TjFlowingWaterHisMapper;
import org.springframework.stereotype.Service;
 
/**
* @author 10845
* @description 针对表【tj_flowing_water_his(his订单流水关联)】的数据库操作Service实现
* @createDate 2024-12-23 10:52:23
*/
@Service
public class TjFlowingWaterHisServiceImpl extends ServiceImpl<TjFlowingWaterHisMapper, TjFlowingWaterHis>
    implements TjFlowingWaterHisService{
 
}