16 lines
599 B
Java
16 lines
599 B
Java
|
package com.isu.gaswellwatch.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.isu.gaswellwatch.dao.UserDepartmentDao;
|
||
|
import com.isu.gaswellwatch.entity.UserDepartment;
|
||
|
import com.isu.gaswellwatch.service.UserDepartmentService;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
import org.springframework.transaction.annotation.Transactional;
|
||
|
|
||
|
@Service("userDepartmentService")
|
||
|
@Transactional(rollbackFor = Exception.class)
|
||
|
public class UserDepartmentServiceImpl extends ServiceImpl<UserDepartmentDao, UserDepartment> implements UserDepartmentService {
|
||
|
|
||
|
}
|
||
|
|