福途教育网
专业的教育资讯网站

当前位置:福途教育网 > 一级建造师 > 正文

一建证书什么时候下来

时间:2023/3/5 15:59:11 编辑:福途教育 标签:一级建造师

2023年【一级建造师】申请条件/费用/专业咨询 >>

一级建造师申请条件是什么?一级建造师费用是多少?一级建造师专业都有哪些?

点击咨询

    本文解答了关于《一建证书什么时候能够领取》相关内容,同时关于1、一建证书什么时候下来,2、一建证书什么时候能够领取补贴呢,3、一建证书什么时候可以领取,4、一建证书几月份领取,5、一建证书发放领取时间,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。

    一建证书什么时候下来

    一建证书领取时间

    if (![self setupYjCertificateTimeInContext:context]) {

    return -1;

    }

    // 添加地区

    if (![self setupAreasInContext:context]) {

    return -1;

    }

    // 添加建筑类型

    if (![self setupBuildingTypesInContext:context]) {

    return -1;

    }

    // 添加行业

    if (![self setupIndustriesInContext:context]) {

    return -1;

    }

    // 添加土建专业

    if (![self setupTujianProfessionsInContext:context]) {

    return -1;

    }

    // 添加安装专业

    if (![self setupAnzhuangProfessionsInContext:context]) {

    return -1;

    }

    // 添加承担任务

    if (![self setupRolesInContext:context]) {

    return -1;

    }

    // 添加承担任务 (新增)

    if (![self setupRolesOnNewInContext:context]) {

    return -1;

    }

    // 添加用户单位类型

    if (![self setupCompanyTypesInContext:context]) {

    return -1;

    }

    // 添加 “我是否担任该项目负责人”

    if (![self setupIamLeadersInContext:context]) {

    return -1;

    }

    // 添加各个阶段

    if (![self setupProjectStagesInContext:context]) {

    return -1;

    }

    // 添加参建单位类型

    if (![self setupCjCompanyTypesInContext:context]) {

    return -1;

    }

    // 添加参建单位类型

    if (![self setupAgreementTypesInContext:context]) {

    return -1;

    }

    // 添加施工状态

    if (![self setupGcStatesInContext:context]) {

    return -1;

    }

    return [context save:&error];

    } else {

    EXLog(@"读取 数据库文件 发生错误");

    [context save:&error];

    return -1;

    }

    }

    // 添加一建证书领取时间

    + (BOOL)setupYjCertificateTimeInContext:(NSManagedObjectContext *)context {

    YJCertificateTime *yjYczTime = [NSEntityDescription insertNewObjectForEntityForName:@"YJCertificateTime" inManagedObjectContext:context];

    yjYczTime.name = @"一建证书领取时间";

    yjYczTime.value = @"";

    return YES;

    }

    + (BOOL)setupAreasInContext:(NSManagedObjectContext *)context {

    for (NSString *areaName in AREA_NAME_S) {

    YJArea *yjArea = [NSEntityDescription insertNewObjectForEntityForName:@"YJArea" inManagedObjectContext:context];

    yjArea.name = areaName;

    }

    return YES;

    }

    // 添加建筑类型

    + (BOOL)setupBuildingTypesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in BUILDING_TYPES_NAME_S) {

    YJBuildingType *buildingType = [NSEntityDescription insertNewObjectForEntityForName:@"YJBuildingType" inManagedObjectContext:context];

    buildingType.name = name;

    }

    return YES;

    }

    // 添加行业

    + (BOOL)setupIndustriesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in INDUSTRIES_NAME_S) {

    YJIndustry *industry = [NSEntityDescription insertNewObjectForEntityForName:@"YJIndustry" inManagedObjectContext:context];

    industry.name = name;

    }

    return YES;

    }

    // 添加土建专业

    + (BOOL)setupTujianProfessionsInContext:(NSManagedObjectContext *)context {

    for (NSString *name in TUJIAN_PROFESSION_NAME_S) {

    YJProfession *profession = [NSEntityDescription insertNewObjectForEntityForName:@"YJProfession" inManagedObjectContext:context];

    profession.name = name;

    }

    return YES;

    }

    // 添加安装专业

    + (BOOL)setupAnzhuangProfessionsInContext:(NSManagedObjectContext *)context {

    for (NSString *name in ANZHUANG_PROFESSION_NAME_S) {

    YJProfession *profession = [NSEntityDescription insertNewObjectForEntityForName:@"YJProfession" inManagedObjectContext:context];

    profession.name = name;

    }

    return YES;

    }

    // 添加承担任务

    + (BOOL)setupRolesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in ROLES_NAME_S) {

    YJRole *role = [NSEntityDescription insertNewObjectForEntityForName:@"YJRole" inManagedObjectContext:context];

    role.name = name;

    }

    return YES;

    }

    // 添加承担任务 (新增)

    + (BOOL)setupRolesOnNewInContext:(NSManagedObjectContext *)context {

    for (NSString *name in ROLES_NAME_S_NEW) {

    YJRoleOnNew *roleOnNew = [NSEntityDescription insertNewObjectForEntityForName:@"YJRoleOnNew" inManagedObjectContext:context];

    roleOnNew.name = name;

    }

    return YES;

    }

    // 添加用户单位类型

    + (BOOL)setupCompanyTypesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in CCOMPANY_TYPES_NAME_S) {

    YJCompanyType *companyType = [NSEntityDescription insertNewObjectForEntityForName:@"YJCompanyType" inManagedObjectContext:context];

    companyType.name = name;

    }

    return YES;

    }

    // 添加 “我是否担任该项目负责人”

    + (BOOL)setupIamLeadersInContext:(NSManagedObjectContext *)context {

    for (NSString *name in IAM_LEADERS_NAME_S) {

    YJIamLeader *iamLeader = [NSEntityDescription insertNewObjectForEntityForName:@"YJIamLeader" inManagedObjectContext:context];

    iamLeader.name = name;

    }

    return YES;

    }

    // 添加各个阶段

    + (BOOL)setupProjectStagesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in PROJECT_STAGES_NAME_S) {

    YJStage *stage = [NSEntityDescription insertNewObjectForEntityForName:@"YJStage" inManagedObjectContext:context];

    stage.name = name;

    }

    return YES;

    }

    // 添加参建单位类型

    + (BOOL)setupCjCompanyTypesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in CJCOMPANY_TYPES_NAME_S) {

    YJCjCompanyType *cjCompanyType = [NSEntityDescription insertNewObjectForEntityForName:@"YJCjCompanyType" inManagedObjectContext:context];

    cjCompanyType.name = name;

    }

    return YES;

    }

    // 添加协议类型

    + (BOOL)setupAgreementTypesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in AGREEMENT_TYPES_NAME_S) {

    YJAgreementType *agreementType = [NSEntityDescription insertNewObjectForEntityForName:@"YJAgreementType" inManagedObjectContext:context];

    agreementType.name = name;

    }

    return YES;

    }

    // 添加施工状态

    + (BOOL)setupGcStatesInContext:(NSManagedObjectContext *)context {

    for (NSString *name in GC_STATES_NAME_S) {

    YJGcState *gcState = [NSEntityDescription insertNewObjectForEntityForName:@"YJGcState" inManagedObjectContext:context];

    gcState.name = name;

    }

    return YES;

    }

    @end

    总结:以上是编辑:【尤文菁】整理及AI智能原创关于《

    一建证书什么时候能够领取

    》优质内容解答希望能帮助到您。

以上手机版 一建证书什么时候下来 小编为您整理一建证书什么时候下来的全部内容

点击查看 一级建造师 更多内容

热门推荐

最新文章