1、获取岗位修改为工艺人员-默认全部为工艺人员

This commit is contained in:
大米 2024-05-26 08:57:25 +08:00
parent 638af508b4
commit b3cd279b2b
1 changed files with 2 additions and 1 deletions

View File

@ -50,7 +50,8 @@ public class UserRoleService {
*/
public Integer getUserJob(){
// return 1;
return technician()? UserJobEnum.ENGINEER.getValue():UserJobEnum.DESIGNER.getValue();
// return technician()? UserJobEnum.ENGINEER.getValue():UserJobEnum.DESIGNER.getValue();
return UserJobEnum.ENGINEER.getValue();
}
/**