1
lige
2023-09-12 b17a6795e6774805d66cc01d92f8933ae616b83e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ltkj.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.system.domain.SysUserPost;
import com.ltkj.system.mapper.SysUserPostMapper;
import com.ltkj.system.service.ISysUserPostService;
import org.springframework.stereotype.Service;
 
/**
 * @Author: 西安路泰科技有限公司
 * @Author: 作者: zjh
 * @Date: 2023/1/31 15:46
 */
@Service
public class ISysUserPostServiceImpl extends ServiceImpl<SysUserPostMapper, SysUserPost> implements ISysUserPostService {
}