dashboard
repositories
filestore
activity
search
login
main
/
hazardInvestigationSystem
隐患排查综合管控系统
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
back
郑永安
2023-09-04
3c8f3a7b74f62a9053cd9d860d8f1d37454712eb
[hazardInvestigationSystem.git]
/
src
/
main
/
java
/
com
/
gk
/
hotwork
/
Service
/
UserRolesService.java
1
2
3
4
5
6
7
8
9
package com.gk.hotwork.Service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.gk.hotwork.Domain.UserRolesInfo;
public interface UserRolesService extends IService<UserRolesInfo> {
void deleteByUserId(Long userid);
}