中国联通政企岗要签吗?

投票
突然收到了电话说面试通过了,是2月份线上面的。然而说是政企岗,我惊呆了,难道自己被调剂了?结果去翻看了一下,是自己选的第一志愿。。。而且这个岗位只招一个人。
笨人背景:211本
目前还有一个待定的offer是民生银行
但是在昆明,工资可能都差不多,不会太高。
春招还投了上海的中国联通,其实更想去上海,所以怕现在签了昆明的联通,上海的就没机会了(虽然肯定机会不大)
另一个点是,不想后面交违约金,所以想慎重选择一下
各位uu们,麻烦给点建议
#联通求职进展汇总##大家都开始春招面试了吗##牛客在线求职答疑中心#
全部评论
你好 你最后决定去联通昆明市分公司了吗
点赞 回复 分享
发布于 06-26 20:40 云南
民生银行真不行吧,坏账一大堆,被泛海控股欠钱被东方集团欠,有匠心风险。。
点赞 回复 分享
发布于 04-01 15:45 北京
政企有点牛马
点赞 回复 分享
发布于 03-18 21:33 四川

相关推荐

06-22 22:50
河南大学 C++
//现有一链表的头指针 ListNode* pHead,给一定值x,//编写一段代码将所有小于x的集中于前半部分,大于x的集中于后半部分,//若链表内有x则居于中间,没有则不显示//且不能改变原来的数据相对顺序,返回重新排列后的链表的头指针。//示例 x=5//1 6 2 7 3 5 9 8  (5)-->1 2 3 5 6 7 9 8//1 6 2 7 8 5 9 3  (5)-->1 2 3 5 6 7 8 9//1 2 3 (5)-->1 2 3//6 7 8 (5)--->6 7 8//5 5 5 (5)--->5 5 5ListNode* Partition(ListNode* phead,int x){ListNode* smallhead = NULL;ListNode* smallx = NULL;ListNode* bighead = NULL;ListNode* bigx = NULL;ListNode* flaghead = NULL;ListNode* flagx = NULL;if (phead == NULL)return NULL;while (phead){if (phead->val < x){if (smallhead == NULL){smallx = phead;smallhead = smallx;}else{smallx->next = phead;smallx = smallx->next;}}else if (phead->val > x){if (bighead == NULL){bigx = phead;bighead = bigx;}else{bigx->next = phead;bigx = bigx->next;}}else{if (flaghead == NULL){flagx = phead;flaghead = flagx;}else{flagx->next = phead;flagx = flagx->next;}}phead = phead->next;}if(bigx)bigx->next = NULL;if (flaghead != NULL){if (smallhead == NULL){flagx->next = bighead;return flaghead;}else{smallx->next = flaghead;flaghead->next = bighead;return smallhead;}}else{if (smallhead == NULL){return bighead;}else{smallx->next = bighead;return smallhead;}}}
点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务