#
luxiaotao1123
2024-01-29 50c8315f324e502b8b1c95dc546ce0b87820efc4
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.wcs.sys.service.impl;
 
import com.zy.asrs.wcs.sys.mapper.UserRoleMapper;
import com.zy.asrs.wcs.sys.entity.UserRole;
import com.zy.asrs.wcs.sys.service.UserRoleService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("userRoleService")
public class UserRoleServiceImpl extends ServiceImpl<UserRoleMapper, UserRole> implements UserRoleService {
 
}