guoshilong
2024-03-15 cc8bf2663afaf34aef48d7bda688d95c92d83ae9
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
package cn.gistack.sm.sjztmd.service.impl;
 
import cn.gistack.sm.sjztmd.entity.TbDykeInvestigationState;
import cn.gistack.sm.sjztmd.entity.TbResGeneralInvestigationState;
import cn.gistack.sm.sjztmd.mapper.TbDykeInvestigationStateMapper;
import cn.gistack.sm.sjztmd.mapper.TbResGeneralInvestigationStateMapper;
import cn.gistack.sm.sjztmd.service.ITbDykeInvestigationStateService;
import cn.gistack.sm.sjztmd.service.ITbResGeneralInvestigationStateService;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION:
 * @USER: aix
 * @DATE: 2024/3/11 14:36
 */
@Service
@DS("zt")
@Transactional(rollbackFor = Exception.class)
public class TbDykeInvestigationStateServiceImpl extends ServiceImpl<TbDykeInvestigationStateMapper, TbDykeInvestigationState> implements ITbDykeInvestigationStateService {
 
}