| | |
| | | import org.jeecg.modules.system.entity.SysRoleIndex; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | import org.jeecg.modules.system.model.SysUserSysDepartModel; |
| | | import org.jeecg.modules.system.vo.UserSelector; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.Collection; |
| | |
| | | List<SysUser> getUserByRoleCodeList(List<String> roleCodeList); |
| | | |
| | | List<SysUser> getEquipmentAdmin(String roleCode, String equipmentId); |
| | | |
| | | /** |
| | | * 选择用户 |
| | | * @param equipmentCode 选择的设备ID |
| | | * @param productionId 选择的车间ID |
| | | * @param positionCode 岗位编号 |
| | | * @return |
| | | */ |
| | | List<UserSelector> selectOperatorList(String equipmentCode, String productionId, String positionCode); |
| | | |
| | | /** |
| | | * 选择用户 |
| | | * @param positionCode 岗位编号 |
| | | * @return |
| | | */ |
| | | List<UserSelector> selectOperatorList( String positionCode); |
| | | |
| | | } |